freebsd-dev/gnu/usr.bin/cvs/contrib/Makefile
Jordan K. Hubbard 1130b656e5 Make the long-awaited change from $Id$ to $FreeBSD$
This will make a number of things easier in the future, as well as (finally!)
avoiding the Id-smashing problem which has plagued developers for so long.

Boy, I'm glad we're not using sup anymore.  This update would have been
insane otherwise.
1997-01-14 07:20:47 +00:00

44 lines
876 B
Makefile

# $FreeBSD$
.include "${.CURDIR}/../Makefile.inc"
.PATH: ${CVSDIR}/contrib
.PATH: ${CVSDIR}/man
SCRIPTS= rcs2log clmerge cln_hist commit_prep cvs_acls cvscheck \
log log_accum mfpipe rcs-to-cvs rcs2log rcslock sccs2rcs \
easy-import
FILES= README cvscheck.man cvshelp.man descend.man intro.doc
EXAMPDIR= /usr/share/examples/cvs
PERLPATH= /usr/bin/perl
CLEANFILES+= $(SCRIPTS)
.SUFFIXES: .sh .csh .pl
all: ${SCRIPTS}
.sh:
cp $< $@
.csh:
sed -e 's,xCSH_PATHx,/bin/csh,' $< > $@
.pl:
sed -e 's,xPERL_PATHx,$(PERLPATH),' $< > $@
beforeinstall:
.for file in ${SCRIPTS}
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${file} ${DESTDIR}${EXAMPDIR}/contrib
.endfor
.for file in ${FILES}
cd ${.CURDIR} ; \
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 \
${CVSDIR}/contrib/${file} ${DESTDIR}${EXAMPDIR}/contrib
.endfor
.include <bsd.prog.mk>