renamed capinfo to capinfos, as the former name capinfo was already used in a program...
[metze/wireshark/wip.git] / image / Makefile.nmake
1 #
2 # $Id$
3 #
4
5 include ..\config.nmake
6
7 ALL_RC=ethereal.rc libethereal.rc tethereal.rc capinfos.rc editcap.rc text2pcap.rc mergecap.rc wiretap.rc
8 all : $(ALL_RC)
9
10 ethereal.rc   : ethereal.rc.in ..\config.nmake
11         sed -e s/@VERSION@/$(VERSION)/ \
12                 -e s/@RC_VERSION@/$(RC_VERSION)/ \
13                 < ethereal.rc.in > $@
14
15 libethereal.rc: libethereal.rc.in ..\config.nmake
16         sed -e s/@VERSION@/$(VERSION)/ \
17                 -e s/@RC_VERSION@/$(RC_VERSION)/ \
18                 < libethereal.rc.in > $@
19
20 tethereal.rc  : tethereal.rc.in ..\config.nmake
21         sed -e s/@VERSION@/$(VERSION)/ \
22                 -e s/@RC_VERSION@/$(RC_VERSION)/ \
23                 < tethereal.rc.in > $@
24
25 capinfos.rc    : capinfos.rc.in ..\config.nmake
26         sed -e s/@VERSION@/$(VERSION)/ \
27                 -e s/@RC_VERSION@/$(RC_VERSION)/ \
28                 < capinfos.rc.in > $@
29
30 editcap.rc    : editcap.rc.in ..\config.nmake
31         sed -e s/@VERSION@/$(VERSION)/ \
32                 -e s/@RC_VERSION@/$(RC_VERSION)/ \
33                 < editcap.rc.in > $@
34
35 mergecap.rc   : mergecap.rc.in ..\config.nmake
36         sed -e s/@VERSION@/$(VERSION)/ \
37                 -e s/@RC_VERSION@/$(RC_VERSION)/ \
38                 < mergecap.rc.in > $@
39
40 text2pcap.rc  : text2pcap.rc.in ..\config.nmake
41         sed -e s/@VERSION@/$(VERSION)/ \
42                 -e s/@RC_VERSION@/$(RC_VERSION)/ \
43                 < text2pcap.rc.in > $@
44
45 wiretap.rc    : wiretap.rc.in ..\config.nmake
46         sed -e s/@VERSION@/$(WTAP_VERSION)/ \
47                 -e s/@RC_VERSION@/$(RC_WTAP_VERSION)/ \
48                 < wiretap.rc.in > $@
49
50 clean :
51         rm -f $(ALL_RC)
52
53 distclean: clean