Use our standard verbose spelling of rules variables.

(as a nice side affect, this will make gnu/usr.bin/cvs/contrib/Makefile
have a later date than contrib/cvs/contrib/Makefile.in - which will help
the build break after the 1.11.22 CVS import...)
This commit is contained in:
David E. O'Brien 2008-01-13 09:45:53 +00:00
parent 8b7d87e7fb
commit 6949c01e6b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=175291

View File

@ -20,12 +20,12 @@ CLEANFILES+= $(SCRIPTS)
.SUFFIXES: .sh .pl .in
.sh:
cp $< $@
cp ${.IMPSRC} ${.TARGET}
.pl:
sed -e 's,xPERL_PATHx,$(PERLPATH),' $< > $@
sed -e 's,xPERL_PATHx,$(PERLPATH),' ${.IMPSRC} > ${.TARGET}
.in:
sed -e 's,@CSH@,/bin/csh,' -e 's,@PERL@,$(PERLPATH),' $< > $@
sed -e 's,@CSH@,/bin/csh,' -e 's,@PERL@,$(PERLPATH),' ${.IMPSRC} > ${.TARGET}
.include <bsd.prog.mk>