From Edward Meaney: include "mergecap.rc" in the list of things to be
[obnox/wireshark/wip.git] / image / Makefile.nmake
1 #
2 # $Id: Makefile.nmake,v 1.4 2001/07/12 21:02:06 guy Exp $
3 #
4
5 include ..\config.nmake
6
7 ALL_RC=ethereal.rc tethereal.rc editcap.rc text2pcap.rc mergecap.rc
8 all : $(ALL_RC)
9
10 ethereal.rc     : ethereal.rc.in
11         sed -e s/@VERSION@/$(VERSION)/ \
12                 -e s/@RC_VERSION@/$(RC_VERSION)/ \
13                 < ethereal.rc.in > $@
14
15 tethereal.rc    : tethereal.rc.in
16         sed -e s/@VERSION@/$(VERSION)/ \
17                 -e s/@RC_VERSION@/$(RC_VERSION)/ \
18                 < tethereal.rc.in > $@
19
20 editcap.rc      : editcap.rc.in
21         sed -e s/@VERSION@/$(VERSION)/ \
22                 -e s/@RC_VERSION@/$(RC_VERSION)/ \
23                 < editcap.rc.in > $@
24
25 mergecap.rc     : mergecap.rc.in
26         sed -e s/@VERSION@/$(VERSION)/ \
27                 -e s/@RC_VERSION@/$(RC_VERSION)/ \
28                 < mergecap.rc.in > $@
29
30 text2pcap.rc    : text2pcap.rc.in
31         sed -e s/@VERSION@/$(VERSION)/ \
32                 -e s/@RC_VERSION@/$(RC_VERSION)/ \
33                 < text2pcap.rc.in > $@
34
35 clean :
36         rm -f $(ALL_RC)