mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-22 11:17:19 +00:00
2d4574973b
add $FreeBSD$ remove obsolete and completely outdated files.
18 lines
378 B
Makefile
18 lines
378 B
Makefile
# $FreeBSD$
|
|
|
|
FILES= Acknowledgements Bibliography CharGen \
|
|
Charsets EscapeSequences Keyboard.HP Keyboard.VT \
|
|
NotesAndHints
|
|
|
|
beforeinstall:
|
|
for file in ${FILES}; \
|
|
do \
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${.CURDIR}/$$file ${DESTDIR}${BINDIR}/Doc/$$file ; \
|
|
done
|
|
|
|
afterdistribute: beforeinstall
|
|
|
|
.include "../Makefile.inc"
|
|
.include <bsd.subdir.mk>
|