summaryrefslogtreecommitdiff
path: root/image
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2013-12-13 06:52:02 +0000
committerAnders Broman <anders.broman@ericsson.com>2013-12-13 06:52:02 +0000
commit4e3e8d2d1f5f48eba8a567df843fde70899a1695 (patch)
tree4d232fa2632aa1bb3041d022441af305022d618d /image
parent62f5450324559930f306bdd2dc8432759f2f3011 (diff)
downloadwireshark-4e3e8d2d1f5f48eba8a567df843fde70899a1695.tar.gz
Try to fix building of captype
svn path=/trunk/; revision=54024
Diffstat (limited to 'image')
-rw-r--r--image/Makefile.nmake7
1 files changed, 6 insertions, 1 deletions
diff --git a/image/Makefile.nmake b/image/Makefile.nmake
index 59af328960..5bfb58f6d1 100644
--- a/image/Makefile.nmake
+++ b/image/Makefile.nmake
@@ -6,7 +6,7 @@ include ..\config.nmake
# Nmake uses an implicit rule to build a .res from a .rc file!
-ALL_RC=wireshark.rc libwireshark.rc tshark.rc rawshark.rc capinfos.rc editcap.rc text2pcap.rc mergecap.rc reordercap.rc wiretap.rc dumpcap.rc libwsutil.rc wireshark.exe.manifest
+ALL_RC=wireshark.rc libwireshark.rc tshark.rc rawshark.rc capinfos.rc captype.rc editcap.rc text2pcap.rc mergecap.rc reordercap.rc wiretap.rc dumpcap.rc libwsutil.rc wireshark.exe.manifest
all : $(ALL_RC)
wireshark.exe.manifest: wireshark.exe.manifest.in ..\config.nmake
@@ -41,6 +41,11 @@ capinfos.rc : capinfos.rc.in ..\config.nmake
-e s/@RC_VERSION@/$(RC_VERSION)/ \
< capinfos.rc.in > $@
+captype.rc : captype.rc.in ..\config.nmake
+ sed -e s/@VERSION@/$(VERSION)/ \
+ -e s/@RC_VERSION@/$(RC_VERSION)/ \
+ < captype.rc.in > $@
+
editcap.rc : editcap.rc.in ..\config.nmake
sed -e s/@VERSION@/$(VERSION)/ \
-e s/@RC_VERSION@/$(RC_VERSION)/ \