freebsd-nq/share/examples/Makefile
Sheldon Hearn 5aae9955b7 Actually install the virgin copies of the /etc files that we so proudly
claim to install in /usr/share/examples/etc/README.examples .

PR:	5207
Reported by:	"Wayne M. Barnes" <wayne@barnes1.wustl.edu>
1999-06-24 09:45:30 +00:00

37 lines
938 B
Makefile

# $Id: Makefile,v 1.23 1997/02/22 13:55:43 peter Exp $
#
# Doing a make install builds /usr/share/examples
DIRS!= for i in *; do if test -d $$i -a $$i != CVS; then echo $$i; fi; done
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: etc-examples ${SHARED}
.for dir in ${DIRS}
FILES!= find -L ${dir} \( -name CVS -prune \) -o -type f -print
.for file in ${FILES}
copies::
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${file} ${DDIR}/${file}
.endfor
.endfor
.for dir in ${DIRS}
symlinks::
rm -rf ${DDIR}/${dir}; ln -s ${.CURDIR}/${dir} ${DDIR}
.endfor
etc-examples:
(cd ${.CURDIR}/../../etc; ${MAKE} etc-examples)
.include <bsd.prog.mk>