aboutsummaryrefslogtreecommitdiffstats
path: root/image/Makefile.nmake
blob: f8984b26b7f3a39c833e0f7e52f5ffe869fa5bbd (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
#
# $Id: Makefile.nmake,v 1.1 2001/04/05 04:39:26 gram Exp $
#

include ..\config.nmake

ALL_RC=ethereal.rc tethereal.rc editcap.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 > $@

clean :
	rm -f $(ALL_RC)