summaryrefslogtreecommitdiff
path: root/image
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2012-09-24 11:25:40 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2012-09-24 11:25:40 +0000
commit5a10de0446ab54ac99ed208cb2280d740112dea1 (patch)
tree5e589e24523c15e355f94d1ba4db7225603f806b /image
parent95cbbe48d4e1a84797f8d2999fbffb46e4909fe2 (diff)
downloadwireshark-5a10de0446ab54ac99ed208cb2280d740112dea1.tar.gz
Add reordercap to this makefile too.
svn path=/trunk/; revision=45094
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 adddb9a1c0..1746edc404 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 wiretap.rc dumpcap.rc libwsutil.rc wireshark.exe.manifest
+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 : $(ALL_RC)
wireshark.exe.manifest: wireshark.exe.manifest.in ..\config.nmake
@@ -51,6 +51,11 @@ mergecap.rc : mergecap.rc.in ..\config.nmake
-e s/@RC_VERSION@/$(RC_VERSION)/ \
< mergecap.rc.in > $@
+reordercap.rc : reordercap.rc.in ..\config.nmake
+ sed -e s/@VERSION@/$(VERSION)/ \
+ -e s/@RC_VERSION@/$(RC_VERSION)/ \
+ < reordercap.rc.in > $@
+
text2pcap.rc : text2pcap.rc.in ..\config.nmake
sed -e s/@VERSION@/$(VERSION)/ \
-e s/@RC_VERSION@/$(RC_VERSION)/ \