Deleted Added
full compact
Makefile (92868) Makefile (100313)
1# $FreeBSD: head/share/examples/Makefile 92868 2002-03-21 09:15:39Z ru $
1# $FreeBSD: head/share/examples/Makefile 100313 2002-07-18 12:07:49Z ru $
2#
3# Doing a make install builds /usr/share/examples
4
5DIRS!= for i in *; do \
6 if test -d $$i -a $$i != CVS -a \
7 $$i != ipfilter -a $$i != smbfs; then \
8 echo $$i; \
9 fi; \

--- 11 unchanged lines hidden (view full) ---

21all clean cleandir depend lint tags:
22
23beforeinstall: etc-examples ${SHARED}
24
25.for dir in ${DIRS}
26FILES!= find -L ${dir} \( -name CVS -prune \) -o -type f -print
27.for file in ${FILES}
28copies::
2#
3# Doing a make install builds /usr/share/examples
4
5DIRS!= for i in *; do \
6 if test -d $$i -a $$i != CVS -a \
7 $$i != ipfilter -a $$i != smbfs; then \
8 echo $$i; \
9 fi; \

--- 11 unchanged lines hidden (view full) ---

21all clean cleandir depend lint tags:
22
23beforeinstall: etc-examples ${SHARED}
24
25.for dir in ${DIRS}
26FILES!= find -L ${dir} \( -name CVS -prune \) -o -type f -print
27.for file in ${FILES}
28copies::
29 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${file} ${DDIR}/${file}
29 ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 644 ${file} ${DDIR}/${file}
30.endfor
31.endfor
32
33.for dir in ${DIRS}
34symlinks::
35 rm -rf ${DDIR}/${dir}; ln -s ${.CURDIR}/${dir} ${DDIR}
36.endfor
37

--- 13 unchanged lines hidden ---
30.endfor
31.endfor
32
33.for dir in ${DIRS}
34symlinks::
35 rm -rf ${DDIR}/${dir}; ln -s ${.CURDIR}/${dir} ${DDIR}
36.endfor
37

--- 13 unchanged lines hidden ---