HardenedBSD/share/termcap/Makefile
Rodney W. Grimes 3161b790c6 all: does not need to depend on ${MAN5}, remove special case clean:
and cleandir: targets, simple use a CLEANFILES+= to handle this very
simple special case.
Add ${COPY} knob to install commands so that files don't disappear out
of the obj tree after a make install.
1994-07-06 02:16:59 +00:00

29 lines
726 B
Makefile

# @(#)Makefile 8.1 (Berkeley) 6/8/93
# reorder gives an editor command for most common terminals
# (in reverse order from n'th to 1'st most commonly used)
# to move them to the front of termcap
#
MAN5= termcap.0
CLEANFILES+= termcap termcap.db
all: termcap termcap.db
termcap: reorder termcap.src
ex - ${.CURDIR}/termcap.src < ${.CURDIR}/reorder > /dev/null
termcap.db: termcap
cap_mkdb termcap
beforeinstall:
install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 termcap \
${DESTDIR}${BINDIR}/misc
install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 termcap.db \
${DESTDIR}${BINDIR}/misc
install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/map3270 \
${DESTDIR}${BINDIR}/misc
.include <bsd.prog.mk>