aboutsummaryrefslogtreecommitdiffstats
path: root/image/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-07-17 09:49:32 +0000
committerGuy Harris <guy@alum.mit.edu>2004-07-17 09:49:32 +0000
commit506605d77122d28b108e1775c9851968853f04f5 (patch)
tree0f9bb7aa22fa008a7e3122124cf8a0a682a78d12 /image/Makefile.nmake
parent3af21a8836220852257b0c54124bbca193210c1b (diff)
From Graham Bloice: add resource information to libethereal.dll.
svn path=/trunk/; revision=11388
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 2732c5326f..dc15d9afad 100644
--- a/image/Makefile.nmake
+++ b/image/Makefile.nmake
@@ -4,7 +4,7 @@
include ..\config.nmake
-ALL_RC=ethereal.rc tethereal.rc editcap.rc text2pcap.rc mergecap.rc
+ALL_RC=ethereal.rc libethereal.rc tethereal.rc editcap.rc text2pcap.rc mergecap.rc
all : $(ALL_RC)
ethereal.rc : ethereal.rc.in ..\config.nmake
@@ -12,6 +12,11 @@ ethereal.rc : ethereal.rc.in ..\config.nmake
-e s/@RC_VERSION@/$(RC_VERSION)/ \
< ethereal.rc.in > $@
+libethereal.rc: libethereal.rc.in ..\config.nmake
+ sed -e s/@VERSION@/$(VERSION)/ \
+ -e s/@RC_VERSION@/$(RC_VERSION)/ \
+ < libethereal.rc.in > $@
+
tethereal.rc : tethereal.rc.in ..\config.nmake
sed -e s/@VERSION@/$(VERSION)/ \
-e s/@RC_VERSION@/$(RC_VERSION)/ \