summaryrefslogtreecommitdiff
path: root/image/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-07-23 06:11:50 +0000
committerGuy Harris <guy@alum.mit.edu>2004-07-23 06:11:50 +0000
commitf28323ba39027c4fbd571f7c5c2077ae439b822c (patch)
tree6e7199f85b4c9751af9245ac2209f90eb6c948ea /image/Makefile.nmake
parent43b2da02ae40a519abf65d141b0ea5e44a5f9a7a (diff)
downloadwireshark-f28323ba39027c4fbd571f7c5c2077ae439b822c.tar.gz
From Graham Bloice: add resources to wiretap.dll.
svn path=/trunk/; revision=11476
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 8836313de9..aec3a46095 100644
--- a/image/Makefile.nmake
+++ b/image/Makefile.nmake
@@ -4,7 +4,7 @@
include ..\config.nmake
-ALL_RC=ethereal.rc libethereal.rc tethereal.rc editcap.rc text2pcap.rc mergecap.rc
+ALL_RC=ethereal.rc libethereal.rc tethereal.rc editcap.rc text2pcap.rc mergecap.rc wiretap.rc
all : $(ALL_RC)
ethereal.rc : ethereal.rc.in ..\config.nmake
@@ -37,6 +37,11 @@ text2pcap.rc : text2pcap.rc.in ..\config.nmake
-e s/@RC_VERSION@/$(RC_VERSION)/ \
< text2pcap.rc.in > $@
+wiretap.rc : wiretap.rc.in ..\config.nmake
+ sed -e s/@VERSION@/$(WTAP_VERSION)/ \
+ -e s/@RC_VERSION@/$(RC_WTAP_VERSION)/ \
+ < wiretap.rc.in > $@
+
clean :
rm -f $(ALL_RC)