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:
obrien 2008-01-13 09:45:53 +00:00
parent bc09846720
commit e5eec05ed2

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>