FIXUP: WIP: verification_trailer
[wireshark-wip.git] / epan / crypt / Makefile.nmake
blob61bb25f4bcd927634a5194c75d50bd288cc7c89e
1 ## Makefile for building airpdcap.lib with Microsoft C and nmake
2 ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
4 # $Id$
6 include ..\..\config.nmake
7 include Makefile.common
9 ############### no need to modify below this line #########
11 CFLAGS=$(WARNINGS_ARE_ERRORS) $(STANDARD_CFLAGS) \
12          /I../.. $(GLIB_CFLAGS) -DWS_BUILD_DLL
14 .c.obj::
15         $(CC) $(CFLAGS)  -Fd.\ -c $<
17 AIRPDCAP_OBJECTS = $(LIBAIRPDCAP_SRC:.c=.obj)
19 airpdcap.lib: $(AIRPDCAP_OBJECTS)
20         link /lib /out:airpdcap.lib $(AIRPDCAP_OBJECTS)
22 clean:
23         rm -f $(AIRPDCAP_OBJECTS) airpdcap.lib *.pdb *.sbr
25 distclean: clean
27 maintainer-clean: distclean
29 checkapi:
30         $(PERL) ../../tools/checkAPIs.pl -g termoutput -build \
31         $(LIBAIRPDCAP_SRC)