From 46a749221817e9edeff21e5fc75cd5778b9f4bcf Mon Sep 17 00:00:00 2001 From: bde Date: Sun, 28 Aug 1994 17:21:36 +0000 Subject: Define NOOBJ so that install doesn't try to get the sources from the wrong place. Use ${ECHO} instead of `echo' so that `make -s' is fairly quiet. --- share/examples/Makefile | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'share') 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 - - -- cgit v1.1