1 # $FreeBSD: src/share/examples/Makefile,v 1.28.2.6 2002/08/08 09:03:47 ru Exp $
2 # $DragonFly: src/share/examples/Makefile,v 1.3 2005/07/07 11:49:56 corecode Exp $
4 # Doing a make install builds /usr/share/examples
6 DIRS
!= for i in
*; do \
7 if
test -d
$$i -a
$$i != ipfilter
-a
$$i != smbfs
; then \
12 DDIR
= ${DESTDIR}/usr
/share
/examples
16 # Define SHARED to indicate whether you want symbolic links to the system
17 # source (``symlinks''), or a separate copy (``copies''); (latter useful
18 # in environments where it's not possible to keep /sys publicly readable)
21 all clean cleandir depend lint
tags:
23 beforeinstall
: etc-examples
${SHARED}
26 FILES
!= find
-L
${dir} -type f
-print
29 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 ${file} ${DDIR}/${file}
35 rm -rf
${DDIR}/${dir}; ${LN} -s
${.CURDIR
}/${dir} ${DDIR}
39 .if
${SHARED} != "symlinks"
40 (cd
${.CURDIR
}/..
/..
/etc
; ${MAKE} etc-examples
)
43 .if
${SHARED} != "symlinks"
45 .if
!defined
(NO_IPFILTER
)
50 .
include <bsd.subdir.mk
>