summaryrefslogtreecommitdiff
path: root/plugins/tpg
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2016-06-08 15:57:00 +0200
committerMichael Mann <mmann78@netscape.net>2016-06-15 19:21:57 +0000
commit6baa1b544c84a766d9f9d356e9940eccaf0a128f (patch)
treefc5431419180335703edcbf01e6b260d2c0dcbfd /plugins/tpg
parent88bd50c592b0d24a12dd178ae2858444400a012f (diff)
downloadwireshark-6baa1b544c84a766d9f9d356e9940eccaf0a128f.tar.gz
Remove Nmake build system
Change-Id: I3bd474f3cda9667dec66426b5729449953df3e61 Reviewed-on: https://code.wireshark.org/review/15777 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Jörg Mayer <jmayer@loplof.de> Reviewed-by: Balint Reczey <balint@balintreczey.hu>
Diffstat (limited to 'plugins/tpg')
-rw-r--r--plugins/tpg/Makefile.am1
-rw-r--r--plugins/tpg/Makefile.nmake66
2 files changed, 0 insertions, 67 deletions
diff --git a/plugins/tpg/Makefile.am b/plugins/tpg/Makefile.am
index c8d1220cda..890d289132 100644
--- a/plugins/tpg/Makefile.am
+++ b/plugins/tpg/Makefile.am
@@ -54,7 +54,6 @@ MAINTAINERCLEANFILES = \
EXTRA_DIST = \
http.tpg \
- Makefile.nmake \
CMakeLists.txt
TPG = $(top_builddir)/tools/tpg
diff --git a/plugins/tpg/Makefile.nmake b/plugins/tpg/Makefile.nmake
deleted file mode 100644
index e10daf85cc..0000000000
--- a/plugins/tpg/Makefile.nmake
+++ /dev/null
@@ -1,66 +0,0 @@
-#
-
-include ..\..\config.nmake
-
-############### no need to modify below this line #########
-
-LEMON=..\..\tools\lemon
-
-CFLAGS=$(WARNINGS_ARE_ERRORS) $(STANDARD_CFLAGS) \
- /I../.. $(GLIB_CFLAGS) /I$(LEMON) \
- /I$(PCAP_DIR)\include
-
-.c.obj::
- $(CC) $(CFLAGS) -Fdmate.pdb -c $<
-
-LDFLAGS = $(PLUGIN_LDFLAGS)
-
-!IFDEF ENABLE_LIBWIRESHARK
-LINK_PLUGIN_WITH=..\..\epan\libwireshark.lib
-CFLAGS=$(CFLAGS)
-
-OBJECTS=packet-mate.obj\
- mate_setup.obj\
- mate_runtime.obj\
- mate_util.obj\
- mate_plugin.obj\
- mate_grammar.obj\
- mate_parser.obj
-
-mate.dll mate.exp mate.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
- link -dll /out:mate.dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
- $(GLIB_LIBS)
-
-!ENDIF
-
-clean:
- rm -f $(OBJECTS) mate.dll mate.exp mate.lib *.nativecodeanalysis.xml *.pdb *.sbr
-
-#
-# We remove the generated files with "distclean" because one of them,
-# "mate_parser.c", needs different #includes for UN*X and Windows
-# (UN*X versions of Flex make it include <unistd.h>, but that's a
-# UN*X-only header), so if you're going to build from source, you need
-# to build "mate_parser.c" from "mate_parser.l" with Flex.
-# This might not be necessary for "mate_grammar.{c,h}", but we handle them
-# the same for now.
-#
-distclean: clean
- rm -f mate_parser.c mate_grammar.c mate_grammar.h mate_grammar.out
-
-maintainer-clean: distclean
-
-mate_parser.c : mate_parser.l
- $(LEX) -Pdf_ -omate_parser.c mate_parser.l
-
-mate_grammar.h : mate_grammar.c
-mate_grammar.c : mate_grammar.lemon $(LEMON)\lemon.exe
- $(LEMON)\lemon.exe T=$(LEMON)\lempar.c mate_grammar.lemon
-
-$(LEMON)\lemon.exe:
- cd ../../tools
- $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake lemon
- cd ../plugins/mate
-
-checkapi:
- $(PERL) ../../tools/checkAPIs.pl -g abort -g termoutput -build $(DISSECTOR_SRC) $(DISSECTOR_INCLUDES)