aboutsummaryrefslogtreecommitdiffstats
path: root/image/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-05-21 05:04:49 +0000
committerGuy Harris <guy@alum.mit.edu>2001-05-21 05:04:49 +0000
commit80e9795b71c3b309c6702d46fc62c2e800727363 (patch)
treee10d950b2fc0b4db5f875a0c9f9d5a59fc1c71ef /image/Makefile.nmake
parent1caea2c3612be3438670bf2214a8f3136c47bff2 (diff)
Add resource stuff for text2pcap.
svn path=/trunk/; revision=3429
Diffstat (limited to 'image/Makefile.nmake')
-rw-r--r--image/Makefile.nmake9
1 files changed, 7 insertions, 2 deletions
diff --git a/image/Makefile.nmake b/image/Makefile.nmake
index f8984b26b7..62de6a25d4 100644
--- a/image/Makefile.nmake
+++ b/image/Makefile.nmake
@@ -1,10 +1,10 @@
#
-# $Id: Makefile.nmake,v 1.1 2001/04/05 04:39:26 gram Exp $
+# $Id: Makefile.nmake,v 1.2 2001/05/21 05:04:49 guy Exp $
#
include ..\config.nmake
-ALL_RC=ethereal.rc tethereal.rc editcap.rc
+ALL_RC=ethereal.rc tethereal.rc editcap.rc text2pcap.rc
all : $(ALL_RC)
ethereal.rc : ethereal.rc.in
@@ -22,5 +22,10 @@ editcap.rc : editcap.rc.in
-e s/@RC_VERSION@/$(RC_VERSION)/ \
< editcap.rc.in > $@
+text2pcap.rc : text2pcap.rc.in
+ sed -e s/@VERSION@/$(VERSION)/ \
+ -e s/@RC_VERSION@/$(RC_VERSION)/ \
+ < text2pcap.rc.in > $@
+
clean :
rm -f $(ALL_RC)