-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile.mingw.in
512 lines (406 loc) · 17 KB
/
Makefile.mingw.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
#
# Ettercap NG Makefile for MingW32
# by G. Vanem <[email protected]>
#
.SUFFIXES: .exe .dll
VERSION = @VERSION@
#
# Choose your weapons
#
USE_SSL = 1
USE_PLUGIN = 1
USE_GTK = 1
USE_CURSES = 0
USE_DEBUG = 1
#
# Root directories. Change to suite.
#
# These are required:
# PCAP_ROOT, LIBNET_ROOT, PTHREADS_ROOT, ICONV_ROOT, REGEX_ROOT and ZLIB_ROOT.
#
# These are required for GTK (and GTK is required since the Ncurses/Win32
# port isn't finished):
# GTK_ROOT, PANGO_ROOT, ATK_ROOT and GLIB_ROOT.
#
# The rest are optional depending on what USE_x you've set above.
#
# If USE_CURSES=1, we need Ncurses with PD-curses at bottom.
# Missing packages should not matter unless USE_x requires them.
#
MINGW_ROOT = $(subst \,/,$(MINGW32))
GW32C_ROOT = ../gw32c
PCAP_ROOT = ../winpcap
LIBNET_ROOT = ../libnet
PTHREADS_ROOT = ../pthreads
ICONV_ROOT = ../libiconv
ZLIB_ROOT = ../zlib
REGEX_ROOT = ../regex
OPENSSL_ROOT = ../openssl
NCURSES_ROOT = ../ncurses
PDCURSES_ROOT = ../pdcurses
GTK_ROOT = ../gtk
VPATH = utils/etterfilter utils/etterlog src \
$(addprefix src/, dissectors protocols mitm interfaces/curses \
interfaces/curses/widgets interfaces/gtk interfaces/text missing os)
PROGRAMS = ettercap.exe etterfilter.exe etterlog.exe
DEPEND_REQ = $(addprefix utils/etterfilter/, ef_syntax.c ef_grammar.c ef_grammar.h)
MAN_PAGES = $(addprefix man/, etter.conf.5 ettercap.8 ettercap_curses.8 \
ettercap_plugins.8 etterfilter.8 etterlog.8)
MAN_BASE = $(MINGW_ROOT)/man
CC = gcc
CFLAGS = -g -Wall -O2 -mcpu=pentium -fno-strength-reduce -DOS_MINGW -DOS_WINDOWS
CFLAGS += -DWIN32 -D_WIN32 -DWIN32_LEAN_AND_MEAN -DHAVE_STRSIGNAL -DHAVE_CTYPE_H \
-DRETSIGTYPE=void -DGCC_VERSION=\"MingW\"
CFLAGS += -DHAVE_INT8_T -DHAVE_U_INT8_T -DHAVE_INT16_T -DHAVE_U_INT16_T -DHAVE_UTF8 \
-DHAVE_INT32_T -DHAVE_U_INT32_T -DHAVE_STDINT_H -D_BSDTYPES_DEFINED \
-Du_int8_t='unsigned char' -Du_int32_t='unsigned int' \
-Du_int16_t='unsigned short' -Du_int=unsigned -Duint=unsigned \
-Du_char=u_int8_t -Du_short=u_int16_t -Du_long='unsigned long'
CFLAGS += -I./src -I./include -I./include/missing -I./src/interfaces/text \
-I./src/interfaces/curses -I./src/interfaces/curses/widgets
EX_LIBS = -lws2_32
# winpcap
CFLAGS += -I$(PCAP_ROOT)/Include -DPCAP_NO_INLINES
EX_LIBS += $(PCAP_ROOT)/lib/libwpcap.a $(PCAP_ROOT)/lib/libpacket.a
# libnet
CFLAGS += -I$(LIBNET_ROOT)/include -I$(LIBNET_ROOT)/include/win32
EX_LIBS += $(LIBNET_ROOT)/lib/libnet.dll.a
# pthreads
CFLAGS += -I$(PTHREADS_ROOT)/include
EX_LIBS += $(PTHREADS_ROOT)/lib/libpthreadGC.a
# zlib
CFLAGS += -I$(ZLIB_ROOT)/include
EX_LIBS += -L$(ZLIB_ROOT)/lib -lz
# regex
CFLAGS += -I$(REGEX_ROOT)/include
EX_LIBS += $(REGEX_ROOT)/lib/libregex.a
# libiconv
CFLAGS += -I$(ICONV_ROOT)/include
EX_LIBS += $(ICONV_ROOT)/lib/libiconv.dll.a
#
# May not actually build DLLs, but we could try to find them anyway :)
#
CFLAGS += -DHAVE_PLUGINS
ifeq ($(USE_DEBUG),1)
CFLAGS += -DDEBUG
RCFLAGS += -DDEBUG
endif
ifeq ($(USE_CURSES),1)
CFLAGS += -DHAVE_NCURSES -DPDC_STATIC_BUILD -I$(PDCURSES_ROOT) -I$(NCURSES_ROOT) \
-I$(NCURSES_ROOT)/include -I$(NCURSES_ROOT)/form -I$(NCURSES_ROOT)/menu \
-I$(NCURSES_ROOT)/panel
EX_LIBS += $(NCURSES_ROOT)/libncurses.a $(PDCURSES_ROOT)/pdcurses.a
endif
ifeq ($(USE_GTK),1)
GLIB_INCLUDE = $(GTK_ROOT)/include/glib-2.0
GDK_INCLUDE = $(GTK_ROOT)/include/gdk
GTK_INCLUDE = $(GTK_ROOT)/include/gtk-2.0
PANGO_INCLUDE = $(GTK_ROOT)/include/pango-1.0
ATK_INCLUDE = $(GTK_ROOT)/include/atk-1.0
GLIB_LIBS = $(GTK_ROOT)/lib/libglib-2.0.dll.a \
$(GTK_ROOT)/lib/libgmodule-2.0.dll.a \
$(GTK_ROOT)/lib/libgobject-2.0.dll.a \
$(GTK_ROOT)/lib/libgthread-2.0.dll.a
GTK_LIBS = $(GTK_ROOT)/lib/libgdk-win32-2.0.dll.a \
$(GTK_ROOT)/lib/libgdk_pixbuf-2.0.dll.a \
$(GTK_ROOT)/lib/libgtk-win32-2.0.dll.a \
$(GTK_ROOT)/lib/libpango-1.0.dll.a
CFLAGS += -DHAVE_GTK -mms-bitfields -DG_DISABLE_CAST_CHECKS -I./src/interfaces/gtk \
-I$(GTK_ROOT)/include -I$(GTK_INCLUDE) \
-I$(GDK_INCLUDE) -I$(GTK_ROOT)/lib/gtk-2.0/include \
-I$(GLIB_INCLUDE) -I$(GTK_ROOT)/lib/glib-2.0/include \
-I$(PANGO_INCLUDE) -I$(ATK_INCLUDE)
EX_LIBS += $(GLIB_LIBS) $(GTK_LIBS)
EC_LDFLAGS += -Wl,--subsystem,windows
endif
ifeq ($(USE_SSL),1)
CFLAGS += -DHAVE_OPENSSL -I$(OPENSSL_ROOT)/include
EX_LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypto.a -lgdi32 -lws2_32
# gw32c
EX_LIBS += $(GW32C_ROOT)/lib/libgw32c.a -lole32 -luuid
endif
LDFLAGS += # -s
OBJ_DIR = MingW_obj
SOURCE = $(addprefix src/, \
ec_capture.c ec_checksum.c ec_conf.c ec_connbuf.c \
ec_conntrack.c ec_debug.c ec_decode.c ec_dispatcher.c \
ec_dissect.c ec_error.c ec_file.c ec_filter.c \
ec_fingerprint.c ec_format.c ec_globals.c ec_hash.c \
ec_hook.c ec_inet.c ec_inject.c ec_interfaces.c \
ec_log.c ec_main.c ec_manuf.c ec_mitm.c \
ec_packet.c ec_parser.c ec_passive.c ec_plugins.c \
ec_poll.c ec_profiles.c ec_resolv.c ec_scan.c \
ec_send.c ec_services.c ec_session.c ec_signals.c \
ec_sniff.c ec_sniff_bridge.c ec_sniff_unified.c ec_socket.c \
ec_stats.c ec_streambuf.c ec_strings.c ec_threads.c \
ec_sslwrap.c ec_ui.c ec_update.c)
SOURCE += $(addprefix src/dissectors/, \
ec_bgp.c ec_cvs.c ec_dhcp.c ec_dns.c ec_vrrp.c ec_x11.c \
ec_ftp.c ec_http.c ec_icq.c ec_imap.c ec_irc.c ec_ldap.c \
ec_mountd.c ec_msn.c ec_mysql.c ec_napster.c ec_nntp.c ec_ospf.c \
ec_pop.c ec_portmap.c ec_rcon.c ec_rip.c ec_rlogin.c ec_smb.c \
ec_smtp.c ec_snmp.c ec_socks.c ec_telnet.c ec_vnc.c \
ec_ymsg.c ec_ssh.c)
ifeq ($(USE_SSL),1)
SOURCE += src/dissectors/ec_ssh.c
endif
SOURCE += $(addprefix src/protocols/, ec_arp.c ec_cooked.c ec_eth.c ec_fddi.c \
ec_gre.c ec_icmp.c ec_ip.c ec_ip6.c ec_ppp.c ec_tcp.c ec_tr.c ec_udp.c \
ec_wifi.c)
ifeq ($(USE_CURSES),1)
SOURCE += $(addprefix src/interfaces/curses/, ec_curses.c ec_curses_filters.c ec_curses_help.c \
ec_curses_hosts.c ec_curses_live.c ec_curses_logging.c ec_curses_mitm.c \
ec_curses_offline.c ec_curses_plugins.c ec_curses_start.c ec_curses_targets.c \
ec_curses_view.c ec_curses_view_connections.c ec_curses_view_profiles.c)
SOURCE += $(addprefix src/interfaces/curses/widgets/, wdg.c wdg_compound.c wdg_debug.c \
wdg_dialog.c wdg_dynlist.c wdg_error.c wdg_file.c wdg_input.c wdg_list.c \
wdg_menu.c wdg_panel.c wdg_percentage.c wdg_scroll.c wdg_window.c)
endif
ifeq ($(USE_GTK),1)
SOURCE += $(addprefix src/interfaces/gtk/, ec_gtk.c ec_gtk_conf.c ec_gtk_filters.c ec_gtk_hosts.c \
ec_gtk_live.c ec_gtk_logging.c ec_gtk_menus.c ec_gtk_mitm.c ec_gtk_offline.c \
ec_gtk_plugins.c ec_gtk_start.c ec_gtk_targets.c ec_gtk_view.c \
ec_gtk_view_connections.c ec_gtk_view_profiles.c ec_gtk_help.c)
endif
SOURCE += $(addprefix src/interfaces/text/, ec_text.c ec_text_conn.c ec_text_display.c \
ec_text_plugin.c ec_text_profile.c)
SOURCE += $(addprefix src/mitm/, ec_arp_poisoning.c ec_dhcp_spoofing.c \
ec_icmp_redirect.c ec_port_stealing.c)
SOURCE += $(addprefix src/missing/, getopt.c inet_aton.c memmem.c scandir.c \
strcasestr.c strlcat.c strlcpy.c ) src/os/ec_mingw.c
SOURCE := $(strip $(SOURCE))
#
# All source names are luckily unique
#
OBJECTS = $(addprefix $(OBJ_DIR)/, $(notdir $(SOURCE:.c=.o)) ettercap.res)
EF_SOURCE = $(addprefix utils/etterfilter/, ef_compiler.c ef_ec_compat.c ef_encode.c \
ef_grammar.c ef_main.c ef_output.c ef_parser.c ef_tables.c ef_test.c \
ef_syntax.c) \
$(addprefix src/, ec_error.c ec_file.c ec_filter.c ec_strings.c \
missing/memmem.c missing/inet_aton.c)
EL_SOURCE = $(addprefix utils/etterlog/, el_analyze.c el_conn.c el_decode.c \
el_decode_http.c el_display.c \
el_ec_compat.c el_log.c el_main.c el_parser.c el_profiles.c el_stream.c el_target.c) \
$(addprefix src/, ec_error.c ec_file.c ec_hash.c ec_inet.c ec_format.c \
ec_services.c ec_strings.c ec_passive.c ec_fingerprint.c ec_manuf.c \
missing/strcasestr.c missing/memmem.c missing/basename.c missing/inet_aton.c)
EF_OBJECTS = $(addprefix $(OBJ_DIR)/, $(notdir $(EF_SOURCE:.c=.o)) ef_mingw.o)
EL_OBJECTS = $(addprefix $(OBJ_DIR)/, $(notdir $(EL_SOURCE:.c=.o)) el_mingw.o)
$(EF_OBJECTS): CFLAGS += -I./utils/etterfilter
$(EL_OBJECTS): CFLAGS += -I./utils/etterlog
ifeq ($(USE_PLUGIN),1)
#
# The import library used for linking the plugin DLLs
#
EC_IMPORT = ettercap.a
VPATH += $(addprefix plug-ins/, autoadd arp_cop chk_poison dns_spoof dos_attack \
dummy find_conn find_ettercap find_ip finger finger_submit gre_relay \
gw_discover isolate link_type pptp_chapms1 pptp_clear pptp_pap \
pptp_reneg rand_flood reply_arp scan_poisoner search_promisc smb_clear \
smb_down stp_mangler remote_browser)
DLL_CFLAGS = $(CFLAGS) -shared $(EC_IMPORT) -DBUILDING_PLUGIN
PLUGIN_SRC = $(addprefix plug-ins/, \
arp_cop/arp_cop.c \
autoadd/autoadd.c \
chk_poison/chk_poison.c \
dns_spoof/dns_spoof.c \
dos_attack/dos_attack.c \
dummy/dummy.c \
find_conn/find_conn.c \
find_ettercap/find_ettercap.c \
find_ip/find_ip.c \
finger/finger.c \
finger_submit/finger_submit.c \
gre_relay/gre_relay.c \
gw_discover/gw_discover.c \
link_type/link_type.c \
pptp_chapms1/pptp_chapms1.c \
pptp_clear/pptp_clear.c \
pptp_pap/pptp_pap.c \
pptp_reneg/pptp_reneg.c \
rand_flood/rand_flood.c \
remote_browser/remote_browser.c \
reply_arp/reply_arp.c \
scan_poisoner/scan_poisoner.c \
search_promisc/search_promisc.c \
smb_clear/smb_clear.c \
smb_down/smb_down.c \
stp_mangler/stp_mangler.c)
PLUGIN_DLLS = $(addprefix lib/, \
ec_arp_cop.dll \
ec_chk_poison.dll \
ec_dns_spoof.dll \
ec_dos_attack.dll \
ec_dummy.dll \
ec_find_conn.dll \
ec_find_ettercap.dll \
ec_find_ip.dll \
ec_finger.dll \
ec_finger_submit.dll \
ec_gre_relay.dll \
ec_gw_discover.dll \
ec_isolate.dll \
ec_link_type.dll \
ec_pptp_chapms1.dll \
ec_pptp_clear.dll \
ec_pptp_pap.dll \
ec_pptp_reneg.dll \
ec_rand_flood.dll \
ec_remote_browser.dll \
ec_reply_arp.dll \
ec_scan_poisoner.dll \
ec_search_promisc.dll \
ec_smb_clear.dll \
ec_smb_down.dll \
ec_stp_mangler.dll)
DLL_CFLAGS += $(PTHREADS_ROOT)/lib/libpthreadGC.a -lws2_32
endif
all: $(OBJ_DIR) $(PROGRAMS) $(PLUGIN_DLLS) man_pages
@echo "Welcome to EtterCap NG"
ifeq ($(USE_PLUGIN),1)
ettercap.exe $(EC_IMPORT): $(OBJECTS)
$(CC) $(EC_LDFLAGS) $(LDFLAGS) -Wl,--out-implib,$(EC_IMPORT) -o ettercap.exe $^ $(EX_LIBS)
# Should need no .def-file
# dlltool --output-lib $(EC_IMPORT) --dllname ettercap.exe --input-def src/ettercap.def
else
ettercap.exe: $(OBJECTS)
$(CC) $(LDFLAGS) -o $@ $^ $(EX_LIBS)
endif
@echo
etterfilter.exe: rm_ec_mingw $(EF_OBJECTS)
$(CC) $(LDFLAGS) -o $@ $(EF_OBJECTS) $(EX_LIBS)
rm -f $(OBJ_DIR)/ec_mingw.o
@echo
etterlog.exe: rm_ec_mingw $(EL_OBJECTS)
$(CC) $(LDFLAGS) -o $@ $(EL_OBJECTS) $(EX_LIBS)
rm -f $(OBJ_DIR)/ec_mingw.o
@echo
rm_ec_mingw:
rm -f $(OBJ_DIR)/ec_mingw.o
plugins: $(PLUGIN_DLLS)
man_pages: $(MAN_PAGES)
$(OBJ_DIR):
- mkdir $(OBJ_DIR)
$(OBJ_DIR)/ef_mingw.o: src/os/ec_mingw.c
$(CC) -c $(CFLAGS) -DBUILDING_UTILS -o $@ -c $<
@echo
$(OBJ_DIR)/el_mingw.o: src/os/ec_mingw.c
$(CC) -c $(CFLAGS) -DBUILDING_UTILS -o $@ -c $<
@echo
$(OBJ_DIR)/%.o: %.c
$(CC) -c $(CFLAGS) -o $@ -c $<
@echo
man/%.5: man/%.5.in
sed -e 's/@VERSION/$(VERSION)/' < $< > $@
cp -u $@ $(MAN_BASE)/man5
man/%.8: man/%.8.in
sed -e 's/@VERSION/$(VERSION)/' < $< > $@
cp -u $@ $(MAN_BASE)/man8
utils/etterfilter/ef_grammar.c utils/etterfilter/ef_grammar.h: utils/etterfilter/ef_grammar.y
bison --yacc --defines $^
mv -f y.tab.c utils/etterfilter/ef_grammar.c
mv -f y.tab.h utils/etterfilter/ef_grammar.h
utils/etterfilter/ef_syntax.c: utils/etterfilter/ef_syntax.l
flex -t $^ > $@
$(OBJ_DIR)/ettercap.res: src/ettercap.rc contrib/nsis/eNG.ico
windres $(RCFLAGS) -O COFF -o $@ -i src/ettercap.rc
clean:
rm -f $(OBJ_DIR)/*.o $(OBJ_DIR)/ettercap.res
realclean vclean: clean
rm -f $(PROGRAMS) $(PLUGIN_DLLS) $(EC_IMPORT) $(MAN_PAGES) $(DEPEND_REQ) .depend
- rmdir $(OBJ_DIR)
#
# Rules for building plugins. Isn't there a simpler way?
#
lib/ec_dummy.dll: plug-ins/dummy/dummy.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_arp_cop.dll: plug-ins/arp_cop/arp_cop.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_autoadd.dll: plug-ins/autoadd/autoadd.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_chk_poison.dll: plug-ins/chk_poison/chk_poison.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_dns_spoof.dll: plug-ins/dns_spoof/dns_spoof.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_dos_attack.dll: plug-ins/dos_attack/dos_attack.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_find_conn.dll: plug-ins/find_conn/find_conn.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_find_ettercap.dll: plug-ins/find_ettercap/find_ettercap.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_find_ip.dll: plug-ins/find_ip/find_ip.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_finger.dll: plug-ins/finger/finger.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_finger_submit.dll: plug-ins/finger_submit/finger_submit.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_gre_relay.dll: plug-ins/gre_relay/gre_relay.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_gw_discover.dll: plug-ins/gw_discover/gw_discover.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_isolate.dll: plug-ins/isolate/isolate.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_link_type.dll: plug-ins/link_type/link_type.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_pptp_chapms1.dll: plug-ins/pptp_chapms1/pptp_chapms1.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_pptp_clear.dll: plug-ins/pptp_clear/pptp_clear.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_pptp_pap.dll: plug-ins/pptp_pap/pptp_pap.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_pptp_reneg.dll: plug-ins/pptp_reneg/pptp_reneg.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_rand_flood.dll: plug-ins/rand_flood/rand_flood.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_reply_arp.dll: plug-ins/reply_arp/reply_arp.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_scan_poisoner.dll: plug-ins/scan_poisoner/scan_poisoner.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_search_promisc.dll: plug-ins/search_promisc/search_promisc.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_smb_clear.dll: plug-ins/smb_clear/smb_clear.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_smb_down.dll: plug-ins/smb_down/smb_down.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_stp_mangler.dll: plug-ins/stp_mangler/stp_mangler.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
lib/ec_remote_browser.dll: plug-ins/remote_browser/remote_browser.c $(EC_IMPORT)
$(CC) -o $@ $< $(DLL_CFLAGS)
@echo
#
# Create dependencies
#
depend: $(DEPEND_REQ)
$(CC) -MM $(CFLAGS) $(SOURCE) $(EF_SOURCE) $(EL_SOURCE)| \
sed -e 's/^\([a-zA-Z0-9_-]*\.o:\)/$$(OBJ_DIR)\/\1/' > .depend
ifeq ($(USE_PLUGIN),1)
$(CC) -MM $(CFLAGS) -DBUILDING_PLUGIN $(PLUGIN_SRC) | \
sed -e 's/^\([a-zA-Z0-9_-]*\)\.o:/lib\/ec_\1\.dll:/' >> .depend
endif
-include .depend