Add '*.nativecodeanalysis.xml' to 'clean' targets
[metze/wireshark/wip.git] / epan / crypt / Makefile.nmake
1 ## Makefile for building airpdcap.lib with Microsoft C and nmake
2 ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
3 #
4
5 include ..\..\config.nmake
6 include Makefile.common
7
8 ############### no need to modify below this line #########
9
10 CFLAGS=$(WARNINGS_ARE_ERRORS) $(STANDARD_CFLAGS) \
11          /I../.. $(GLIB_CFLAGS) -DWS_BUILD_DLL
12
13 .c.obj::
14         $(CC) $(CFLAGS)  -Fd.\ -c $<
15
16 AIRPDCAP_OBJECTS = $(LIBAIRPDCAP_SRC:.c=.obj)
17
18 airpdcap.lib: $(AIRPDCAP_OBJECTS)
19         link /lib /out:airpdcap.lib $(AIRPDCAP_OBJECTS)
20
21 clean:
22         rm -f $(AIRPDCAP_OBJECTS) airpdcap.lib *.nativecodeanalysis.xml *.pdb *.sbr
23
24 distclean: clean
25
26 maintainer-clean: distclean
27
28 checkapi:
29         $(PERL) ../../tools/checkAPIs.pl -g termoutput -build \
30         $(LIBAIRPDCAP_SRC)