wireshark/image/Makefile.nmake

32 lines
689 B
Makefile

#
# $Id: Makefile.nmake,v 1.2 2001/05/21 05:04:49 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 > $@
text2pcap.rc : text2pcap.rc.in
sed -e s/@VERSION@/$(VERSION)/ \
-e s/@RC_VERSION@/$(RC_VERSION)/ \
< text2pcap.rc.in > $@
clean :
rm -f $(ALL_RC)