aboutsummaryrefslogtreecommitdiffstats
path: root/image/Makefile.nmake
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-11-28 08:54:52 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-11-28 08:54:52 +0000
commit4bbabeab8546ed0dd629424688e70f28bd70c8ee (patch)
tree83654d0b55d2a4df2d46fef04d91a8c8bd1bd86a /image/Makefile.nmake
parent6b46e5930203a33c61a068201b942aec5bf35468 (diff)
first steps towards a separated capture tool, working title "dumpcap"
personal backup only, not meant for public testing! I've copied main.c into dumpcap.c and carved out all things not needed currently won't work as a command line tool, capture_loop.c wants an input pipe console output is also very ugly and the whole code needs a lot of further cleanup shouldn't break the unix build as I've only changed the nmake files so far, but who knows ... git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16615 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'image/Makefile.nmake')
-rw-r--r--image/Makefile.nmake7
1 files changed, 6 insertions, 1 deletions
diff --git a/image/Makefile.nmake b/image/Makefile.nmake
index cef58145a0..d7eee52cc1 100644
--- a/image/Makefile.nmake
+++ b/image/Makefile.nmake
@@ -4,7 +4,7 @@
include ..\config.nmake
-ALL_RC=ethereal.rc libethereal.rc tethereal.rc capinfos.rc editcap.rc text2pcap.rc mergecap.rc wiretap.rc
+ALL_RC=ethereal.rc libethereal.rc tethereal.rc capinfos.rc editcap.rc text2pcap.rc mergecap.rc wiretap.rc dumpcap.rc
all : $(ALL_RC)
ethereal.rc : ethereal.rc.in ..\config.nmake
@@ -47,6 +47,11 @@ wiretap.rc : wiretap.rc.in ..\config.nmake
-e s/@RC_VERSION@/$(RC_WTAP_VERSION)/ \
< wiretap.rc.in > $@
+dumpcap.rc : dumpcap.rc.in ..\config.nmake
+ sed -e s/@VERSION@/$(VERSION)/ \
+ -e s/@RC_VERSION@/$(RC_VERSION)/ \
+ < dumpcap.rc.in > $@
+
clean :
rm -f $(ALL_RC)