~ubuntu-branches/ubuntu/precise/ettercap/precise

« back to all changes in this revision

Viewing changes to plugins/H07_hydra5/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Murat Demirten
  • Date: 2003-06-21 19:57:18 UTC
  • Revision ID: james.westby@ubuntu.com-20030621195718-qqbbfk18e1djchd9
Tags: upstream-0.6.b
ImportĀ upstreamĀ versionĀ 0.6.b

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
CC       = @CC@
 
3
DEFS     = @PICFLAG@ @DEFS@ -D@OS@
 
4
 
 
5
CFLAG    = @CFLAGS@
 
6
COPTS    = -I../..
 
7
 
 
8
PROG     = H07_hydra5
 
9
 
 
10
ALLOPT   = $(CFLAG) $(COPTS)
 
11
 
 
12
 
 
13
all: $(PROG)
 
14
 
 
15
$(PROG):
 
16
        $(CC) $(ALLOPT) $(DEFS) $(PROG).c @CWPLUGINLIBS@ -o ec_$(PROG).so
 
17
        @echo
 
18
        @echo "@SB@$(PROG) plugin is ready...@EB@"
 
19
        @echo
 
20
 
 
21
clean:
 
22
        rm -f *.bak
 
23
        rm -f ec_$(PROG).so
 
24
 
 
25
distclean: clean
 
26
        rm -f Makefile
 
27