aboutsummaryrefslogtreecommitdiffstats
path: root/image/Makefile.nmake
blob: cbce6b46e3da0aa1100f5d2e5de6695b979f502d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#
# $Id: Makefile.nmake,v 1.3 2001/07/12 19:59:41 guy Exp $
#

include ..\config.nmake

ALL_RC=ethereal.rc tethereal.rc editcap.rc text2pcap.rc
all : $(ALL_RC)

ethereal.rc	: ethereal.rc.in
	sed -e s/@VERSION@/$(VERSION)/ \
		-e s/@RC_VERSION@/$(RC_VERSION)/ \
		< ethereal.rc.in > $@

tethereal.rc	: tethereal.rc.in
	sed -e s/@VERSION@/$(VERSION)/ \
		-e s/@RC_VERSION@/$(RC_VERSION)/ \
		< tethereal.rc.in > $@

editcap.rc	: editcap.rc.in
	sed -e s/@VERSION@/$(VERSION)/ \
		-e s/@RC_VERSION@/$(RC_VERSION)/ \
		< editcap.rc.in > $@

mergecap.rc	: mergecap.rc.in
	sed -e s/@VERSION@/$(VERSION)/ \
		-e s/@RC_VERSION@/$(RC_VERSION)/ \
		< mergecap.rc.in > $@

text2pcap.rc	: text2pcap.rc.in
	sed -e s/@VERSION@/$(VERSION)/ \
		-e s/@RC_VERSION@/$(RC_VERSION)/ \
		< text2pcap.rc.in > $@

clean :
	rm -f $(ALL_RC)