freebsd-dev/share/examples/Makefile

32 lines
887 B
Makefile
Raw Normal View History

1994-10-24 09:56:42 +00:00
# $Id: Makefile,v 1.9 1994/09/25 03:11:27 ache Exp $
#
# Doing a make install builds /usr/share/examples
1994-10-24 09:56:42 +00:00
DIRS=etc FreeBSD_version ibcs2 lkm sunrpc syscons
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 ${DESTDIR}/usr/share/examples
@-for a in ${DIRS}; do \
rm -rf ${DESTDIR}/usr/share/examples/$$a; \
cp -rp $$a ${DESTDIR}/usr/share/examples; \
done
symlinks:
@${ECHO} installing symlinks in ${DESTDIR}/usr/share/examples
@-for a in ${DIRS}; do \
rm -rf ${DESTDIR}/usr/share/examples/$$a; \
ln -s ${.CURDIR}/$$a ${DESTDIR}/usr/share/examples; \
done
.include <bsd.prog.mk>