wireshark/epan/crypt/Makefile.nmake
Bill Meier 5c529c95c5 Add '*.nativecodeanalysis.xml' to 'clean' targets
Change-Id: I90dbf0b31fc737150a01533763a7869b34c68cb6
Reviewed-on: https://code.wireshark.org/review/6220
Reviewed-by: Bill Meier <wmeier@newsguy.com>
2015-01-02 01:45:16 +00:00

31 lines
711 B
Makefile

## Makefile for building airpdcap.lib with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
include ..\..\config.nmake
include Makefile.common
############### no need to modify below this line #########
CFLAGS=$(WARNINGS_ARE_ERRORS) $(STANDARD_CFLAGS) \
/I../.. $(GLIB_CFLAGS) -DWS_BUILD_DLL
.c.obj::
$(CC) $(CFLAGS) -Fd.\ -c $<
AIRPDCAP_OBJECTS = $(LIBAIRPDCAP_SRC:.c=.obj)
airpdcap.lib: $(AIRPDCAP_OBJECTS)
link /lib /out:airpdcap.lib $(AIRPDCAP_OBJECTS)
clean:
rm -f $(AIRPDCAP_OBJECTS) airpdcap.lib *.nativecodeanalysis.xml *.pdb *.sbr
distclean: clean
maintainer-clean: distclean
checkapi:
$(PERL) ../../tools/checkAPIs.pl -g termoutput -build \
$(LIBAIRPDCAP_SRC)