5 include ..\config.nmake
7 include ..\Makefile.nmake.inc
9 include Makefile.common
11 # We use GENERATED_CFLAGS to get around flex's non-LLP64-compliant output
14 -DYYMALLOC=malloc -DYYFREE=free \
15 /I. /I.. $(GLIB_CFLAGS) \
16 $(ZLIB_CFLAGS) /I$(PCAP_DIR)/include \
19 CFLAGS=$(WARNINGS_ARE_ERRORS) $(GENERATED_CFLAGS)
22 $(CC) $(CFLAGS) -Fd.\ -c $<
24 OBJECTS=$(NONGENERATED_C_FILES:.c=.obj) $(GENERATED_C_FILES:.c=.obj)
28 ..\wsutil\libwsutil.lib \
31 all: wiretap-$(WTAP_VERSION).dll
33 wiretap-$(WTAP_VERSION).lib: wiretap-$(WTAP_VERSION).dll
34 wiretap-$(WTAP_VERSION).exp: wiretap-$(WTAP_VERSION).dll
36 wiretap-$(WTAP_VERSION).dll : $(OBJECTS) ..\image\wiretap.res
37 $(link) $(dlllflags) $(conlibsdll) \
38 $(LOCAL_LDFLAGS) $(DLL_LDFLAGS) \
39 /OUT:wiretap-$(WTAP_VERSION).dll \
40 /IMPLIB:wiretap-$(WTAP_VERSION).lib \
41 ..\image\wiretap.res \
42 $(OBJECTS) $(wiretap_LIBS)
44 RUNLEX = ..\tools\runlex.sh
46 k12text_lex.h : k12text.c
47 k12text.obj : k12text.c
48 $(CC) $(GENERATED_CFLAGS) -Fd.\ -c $?
50 ascend_scanner_lex.h : ascend_scanner.c
51 ascend_scanner.obj : ascend_scanner.c ascend.h
52 $(CC) $(GENERATED_CFLAGS) -Fd.\ -c ascend_scanner.c
54 ascend_scanner.c : ascend.h
56 ascend.c ascend.h : ascend.y
57 $(YACC) $(YACC_OPTS) -d -p ascend ascend.y -o ascend.c
64 wiretap-*.dll.manifest \
68 # We remove the generated files with "distclean" because one of them,
69 # "ascend_scanner.c", needs different #includes for UN*X and Windows
70 # (UN*X versions of Flex make it include <unistd.h>, but that's a
71 # UN*X-only header), so if you're going to build from source, you need
72 # to build "ascend_scanner.c" from "ascend_scanner.l" with Flex.
73 # This might not be necessary for "ascend.{c,h}", but as
74 # long as you need Flex, you might as well get Bison....
77 rm -f $(GENERATED_FILES)
79 maintainer-clean: distclean
82 ## 'abort' checking disabled for now pending resolution of existing use of g_assert & g_error
83 ## $(PERL) ../tools/checkAPIs.pl -g abort -g termoutput $(NONGENERATED_C_FILES) $(GENERATOR_FILES)
84 $(PERL) ../tools/checkAPIs.pl -g termoutput -build $(NONGENERATED_C_FILES) $(GENERATOR_FILES)