36 lines
841 B
Makefile
36 lines
841 B
Makefile
# $Id: Makefile,v 1.12 1994/11/08 18:54:33 phk Exp $
|
|
#
|
|
# Doing a make install builds /usr/share/examples
|
|
|
|
DIRS=etc FreeBSD_version ibcs2 lkm sunrpc
|
|
|
|
DDIR=${DESTDIR}/usr/share/examples
|
|
|
|
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}
|
|
@-for a in ${DIRS}; do \
|
|
rm -rf ${DDIR}/$$a; \
|
|
done
|
|
find ${DIRS} -print | grep -v /CVS | \
|
|
grep -v Makefile | cpio -dumpv ${DDIR}
|
|
|
|
symlinks:
|
|
@${ECHO} installing symlinks in ${DDIR}
|
|
@-for a in ${DIRS}; do \
|
|
rm -rf ${DDIR}/$$a; \
|
|
ln -s ${.CURDIR}/$$a ${DDIR}; \
|
|
done
|
|
|
|
.include <bsd.prog.mk>
|