MSWSP: add two more Property Sets
[wireshark-wip.git] / epan / ftypes / Makefile.nmake
blobec28e8ed65b4464586b69c5d893e32469921c636
1 ## Makefile for building wireshark.exe with Microsoft C and nmake
2 ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
4 # $Id$
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
16 .c.obj::
17         $(CC) $(CFLAGS) -Fd.\ -c $<
19 OBJECTS=$(NONGENERATED_C_FILES:.c=.obj)
21 ftypes.lib      : $(OBJECTS)
22         link /lib /out:ftypes.lib $(OBJECTS)
24 clean:
25         rm -f $(OBJECTS) ftypes.lib *.pdb *.sbr
27 distclean: clean
29 maintainer-clean: distclean
31 checkapi:
32         $(PERL) ../../tools/checkAPIs.pl -g termoutput -build \
33                 $(NONGENERATED_C_FILES)