diff options
Diffstat (limited to 'share/examples/Makefile')
-rw-r--r-- | share/examples/Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/share/examples/Makefile b/share/examples/Makefile index d321b8a..1653527 100644 --- a/share/examples/Makefile +++ b/share/examples/Makefile @@ -1,20 +1,21 @@ -# $Id: Makefile,v 1.2 1994/08/10 06:40:29 wollman Exp $ +# $Id: Makefile,v 1.3 1994/08/19 20:43:42 wollman Exp $ # # Doing a make install builds /usr/share/examples -# -all clean cleandir depend lint tags: DIRS=etc FreeBSD_version lkm sunrpc +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 + @${ECHO} installing ${DESTDIR}/usr/share/examples @rm -rf ${DESTDIR}/usr/share/examples @-mkdir ${DESTDIR}/usr/share/examples @tar cf - ${DIRS} | \ @@ -23,7 +24,7 @@ copies: @chmod -R a-w ${DESTDIR}/usr/share/examples symlinks: - @echo installing symlinks in ${DESTDIR}/usr/share/examples + @${ECHO} installing symlinks in ${DESTDIR}/usr/share/examples @rm -rf ${DESTDIR}/usr/share/examples @-mkdir ${DESTDIR}/usr/share/examples @-for a in ${DIRS}; do \ @@ -33,5 +34,3 @@ symlinks: @chmod -R a-w ${DESTDIR}/usr/share/examples .include <bsd.prog.mk> - - |