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 /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 'Makefile.nmake')
-rw-r--r-- | Makefile.nmake | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Makefile.nmake b/Makefile.nmake index 45a9b1c9a2..5afdabd6df 100644 --- a/Makefile.nmake +++ b/Makefile.nmake @@ -110,9 +110,12 @@ randpkt_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \ $(GLIB_LIBS) \ $(NET_SNMP_DIR)\win32\lib\netsnmp.lib -EXECUTABLES=ethereal.exe ethereal-gtk2.exe tethereal.exe capinfo.exe editcap.exe mergecap.exe text2pcap.exe +EXECUTABLES=ethereal.exe ethereal-gtk2.exe tethereal.exe \ + capinfo.exe editcap.exe mergecap.exe text2pcap.exe -RESOURCES=image\ethereal.res image\libethereal.res image\tethereal.res image\editcap.res image\mergecap.res image\text2pcap.res image\wiretap.res +RESOURCES=image\ethereal.res image\libethereal.res image\tethereal.res \ + image\capinfo.res image\editcap.res image\mergecap.res \ + image\text2pcap.res image\wiretap.res all: config.h tools image wiretap epan $(EXECUTABLES) $(RESOURCES) doc @@ -165,10 +168,10 @@ tethereal.exe : config.h svnversion.h $(tethereal_OBJECTS) $(EXTRA_OBJECTS) epan /OUT:tethereal.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(tethereal_LIBS) $(tethereal_OBJECTS) $(EXTRA_OBJECTS) image\tethereal.res << -capinfo.exe : config.h capinfo.obj getopt.obj wiretap\wiretap-$(WTAP_VERSION).lib image\editcap.res +capinfo.exe : config.h capinfo.obj getopt.obj wiretap\wiretap-$(WTAP_VERSION).lib image\capinfo.res @echo Linking $@ $(LINK) @<< - /OUT:capinfo.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console capinfo.obj getopt.obj $(capinfo_LIBS) image\editcap.res + /OUT:capinfo.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console capinfo.obj getopt.obj $(capinfo_LIBS) image\capinfo.res << editcap.exe : config.h editcap.obj getopt.obj wiretap\wiretap-$(WTAP_VERSION).lib image\editcap.res |