1 ## Makefile for building wireshark.exe with Microsoft C and nmake
2 ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
6 include ..\..\config.nmake
8 include Makefile.common
10 ############### no need to modify below this line #########
12 CFLAGS=$(WARNINGS_ARE_ERRORS) $(STANDARD_CFLAGS) \
13 /I. /I.. /I../.. $(GLIB_CFLAGS) \
14 /I$(PCAP_DIR)\include -DWS_BUILD_DLL
17 $(CC) $(CFLAGS) -Fd.\ -c $<
19 OBJECTS=$(NONGENERATED_C_FILES:.c=.obj)
21 ftypes.lib : $(OBJECTS)
22 link /lib /out:ftypes.lib $(OBJECTS)
25 rm -f $(OBJECTS) ftypes.lib *.pdb *.sbr
29 maintainer-clean: distclean
32 $(PERL) ../../tools/checkAPIs.pl -g termoutput -build \
33 $(NONGENERATED_C_FILES)