3becbb252c
We don't install dot.nsmbrc or smbfs.sh.sample, since we already install the former as /etc/nsmb.conf and the latter is unnecessary, since boot-time mounts can be arranged directly within /etc/fstab without fear of breaking the boot when the smbfs port (now unnecessary is removed). The MFC reminder below is subject to <re@FreeBSD.org> approval priod to 4.5-RELEASE. MFC after: 1 week
48 lines
1.0 KiB
Makefile
48 lines
1.0 KiB
Makefile
# $FreeBSD$
|
|
#
|
|
# Doing a make install builds /usr/share/examples
|
|
|
|
DIRS!= for i in *; do \
|
|
if test -d $$i -a $$i != CVS -a \
|
|
$$i != ipfilter -a $$i != smbfs; 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:
|
|
.if ${SHARED} != "symlinks"
|
|
(cd ${.CURDIR}/../../etc; ${MAKE} etc-examples)
|
|
.endif
|
|
|
|
.if ${SHARED} != "symlinks"
|
|
SUBDIR= ipfilter smbfs
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|