diff options
author | Olivier Biot <obiot.ethereal@gmail.com> | 2004-07-28 21:13:27 +0000 |
---|---|---|
committer | Olivier Biot <obiot.ethereal@gmail.com> | 2004-07-28 21:13:27 +0000 |
commit | 028fd26a0efc99f50c364f05cb330502cf6300dd (patch) | |
tree | 675bf69ca88f41eb68691cb851c7ca07b5e26a8b /image/Makefile.nmake | |
parent | cb6b29786bb98412602a039658e5c5b134595b0e (diff) | |
download | wireshark-028fd26a0efc99f50c364f05cb330502cf6300dd.tar.gz wireshark-028fd26a0efc99f50c364f05cb330502cf6300dd.tar.bz2 wireshark-028fd26a0efc99f50c364f05cb330502cf6300dd.zip |
Add the MSWIN RC information for capinfo.
svn path=/trunk/; revision=11556
Diffstat (limited to 'image/Makefile.nmake')
-rw-r--r-- | image/Makefile.nmake | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/image/Makefile.nmake b/image/Makefile.nmake index aec3a46095..db4b2b49aa 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 wiretap.rc +ALL_RC=ethereal.rc libethereal.rc tethereal.rc capinfo.rc editcap.rc text2pcap.rc mergecap.rc wiretap.rc all : $(ALL_RC) ethereal.rc : ethereal.rc.in ..\config.nmake @@ -22,6 +22,11 @@ tethereal.rc : tethereal.rc.in ..\config.nmake -e s/@RC_VERSION@/$(RC_VERSION)/ \ < tethereal.rc.in > $@ +capinfo.rc : capinfo.rc.in ..\config.nmake + sed -e s/@VERSION@/$(VERSION)/ \ + -e s/@RC_VERSION@/$(RC_VERSION)/ \ + < capinfo.rc.in > $@ + editcap.rc : editcap.rc.in ..\config.nmake sed -e s/@VERSION@/$(VERSION)/ \ -e s/@RC_VERSION@/$(RC_VERSION)/ \ |