From 6baa1b544c84a766d9f9d356e9940eccaf0a128f Mon Sep 17 00:00:00 2001 From: Pascal Quantin Date: Wed, 8 Jun 2016 15:57:00 +0200 Subject: Remove Nmake build system MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I3bd474f3cda9667dec66426b5729449953df3e61 Reviewed-on: https://code.wireshark.org/review/15777 Petri-Dish: Pascal Quantin Tested-by: Petri Dish Buildbot Reviewed-by: Jörg Mayer Reviewed-by: Balint Reczey --- randpkt_core/Makefile.am | 3 +- randpkt_core/Makefile.nmake | 73 --------------------------------------------- 2 files changed, 1 insertion(+), 75 deletions(-) delete mode 100644 randpkt_core/Makefile.nmake (limited to 'randpkt_core') diff --git a/randpkt_core/Makefile.am b/randpkt_core/Makefile.am index a3cb84090c..5f8456784d 100644 --- a/randpkt_core/Makefile.am +++ b/randpkt_core/Makefile.am @@ -68,5 +68,4 @@ EXTRA_DIST = \ $(GENERATOR_FILES) \ CMakeLists.txt \ doxygen.cfg.in \ - Makefile.common \ - Makefile.nmake + Makefile.common diff --git a/randpkt_core/Makefile.nmake b/randpkt_core/Makefile.nmake deleted file mode 100644 index d834d9d7bd..0000000000 --- a/randpkt_core/Makefile.nmake +++ /dev/null @@ -1,73 +0,0 @@ -## Makefile for building wireshark.exe with Microsoft C and nmake -## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake -# - -include ..\config.nmake -include ..\Makefile.nmake.inc - -############### no need to modify below this line ######### - -# We use GENERATED_CFLAGS to get around flex's non-LLP64-compliant output -GENERATED_CFLAGS=\ - $(STANDARD_CFLAGS) \ - /Zm800 \ - /I.. $(GLIB_CFLAGS) - -CFLAGS=$(WARNINGS_ARE_ERRORS) $(GENERATED_CFLAGS) - -.c.obj:: - $(CC) $(CFLAGS) $(WSUG_CFLAGS) -Fd.\ -c $< - -include Makefile.common - - -# if you add files here, be sure to include them also in Makefile.am EXTRA_DIST -RANDPKT_CORE_OBJECTS = \ - $(RANDPKT_CORE_SRC:.c=.obj) - -RUNLEX=../tools/runlex.sh - -librandpkt_core.lib : ..\config.h $(RANDPKT_CORE_OBJECTS) - link /lib /out:librandpkt_core.lib $(RANDPKT_CORE_OBJECTS) - -clean: - rm -f $(RANDPKT_CORE_OBJECTS) librandpkt_core.lib \ - *.nativecodeanalysis.xml *.pdb *.sbr \ - doxygen.cfg html/*.* wireshark-tap-register-cache.pkl - if exist html rmdir html - -distclean: clean - -maintainer-clean: distclean - rm -f $(GENERATED_FILES) - -# convert doxygen.cfg.in to doxygen.cfg with stamped version info -doxygen.cfg: ..\config.nmake doxygen.cfg.in -!IFDEF DOXYGEN - sed -e s/@VERSION@/$(VERSION)/ \ - < doxygen.cfg.in > $@ -!ENDIF - -doxygen-run: -!IFDEF DOXYGEN - $(DOXYGEN) doxygen.cfg -!ENDIF - -# MS html help compiler hhc returns 1 on success, but as nmake expects 0 it would stop here. -# the prepended -1 will raise the accepted error levels of nmake, so it will continue -doxygen.chm: -!IFDEF HHC - -1 $(HHC) html\index.hhp -!ENDIF - -doxygen: doxygen.cfg doxygen-run doxygen.chm - -checkapi: checkapi-base checkapi-todo - -checkapi-base: - $(PERL) ../tools/checkAPIs.pl -g deprecated-gtk -build \ - $(RANDPKT_CORE_SRC) - -checkapi-todo: - $(PERL) ../tools/checkAPIs.pl -M -g deprecated-gtk-todo -build \ - $(RANDPKT_CORE_SRC) -- cgit v1.2.1