Make installs better, install the FAQ stuff, don't install CVS-dirs.

This commit is contained in:
Poul-Henning Kamp 1994-11-08 03:58:52 +00:00
parent ea6351cbc7
commit ca6aa03bec
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4257
3 changed files with 40 additions and 8 deletions

28
share/FAQ/Makefile Normal file
View File

@ -0,0 +1,28 @@
# $Id: Makefile,v 1.10 1994/10/24 09:56:42 sos Exp $
#
# Doing a make install builds /usr/share/examples
DDIR= ${DESTDIR}/usr/share/FAQ
NOOBJ= noobj
# Define SHARED to indicate whether you want symbolic links to the system
# source (``symlinks''), or a separate copy (``copies''); (latter useful
# in environments where it's not possible to keep /sys publicly readable)
SHARED?= copies
all clean cleandir depend lint tags:
beforeinstall: ${SHARED}
copies:
@${ECHO} installing ${DDIR}
rm -rf ${DDIR}
mkdir ${DDIR}
find . -print | grep -v /CVS | cpio -dumpv ${DDIR}
symlinks:
@${ECHO} installing symlink to ${DDIR}
rm -rf ${DDIR}; \
ln -s ${.CURDIR} ${DDIR}; \
.include <bsd.prog.mk>

View File

@ -1,6 +1,7 @@
# @(#)Makefile 8.1 (Berkeley) 6/5/93
# XXX BROKEN LINKS: doc
SUBDIR= dict examples man me misc mk skel syscons tabset termcap tmac zoneinfo
SUBDIR= FAQ dict examples man me misc mk skel syscons \
tabset termcap tmac zoneinfo
.include <bsd.subdir.mk>

View File

@ -1,8 +1,11 @@
# $Id: Makefile,v 1.9 1994/09/25 03:11:27 ache Exp $
# $Id: Makefile,v 1.10 1994/10/24 09:56:42 sos Exp $
#
# Doing a make install builds /usr/share/examples
DIRS=etc FreeBSD_version ibcs2 lkm sunrpc syscons
DDIR=${DESTDIR}/usr/share/examples
NOOBJ= noobj
# Define SHARED to indicate whether you want symbolic links to the system
@ -15,17 +18,17 @@ all clean cleandir depend lint tags:
beforeinstall: ${SHARED}
copies:
@${ECHO} installing ${DESTDIR}/usr/share/examples
@${ECHO} installing ${DDIR}
@-for a in ${DIRS}; do \
rm -rf ${DESTDIR}/usr/share/examples/$$a; \
cp -rp $$a ${DESTDIR}/usr/share/examples; \
rm -rf ${DDIR}/$$a; \
done
find ${DIRS} -print | grep -v /CVS | cpio -dumpv ${DDIR}
symlinks:
@${ECHO} installing symlinks in ${DESTDIR}/usr/share/examples
@${ECHO} installing symlinks in ${DDIR}
@-for a in ${DIRS}; do \
rm -rf ${DESTDIR}/usr/share/examples/$$a; \
ln -s ${.CURDIR}/$$a ${DESTDIR}/usr/share/examples; \
rm -rf ${DDIR}/$$a; \
ln -s ${.CURDIR}/$$a ${DDIR}; \
done
.include <bsd.prog.mk>