Don't install Makefile

This commit is contained in:
Poul-Henning Kamp
1994-11-08 18:54:33 +00:00
parent 700b814a89
commit 1391719225
2 changed files with 5 additions and 4 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
# $Id: Makefile,v 1.10 1994/10/24 09:56:42 sos Exp $
# $Id: Makefile,v 1.1 1994/11/08 03:58:48 phk Exp $
#
# Doing a make install builds /usr/share/examples
@@ -18,7 +18,7 @@ copies:
@${ECHO} installing ${DDIR}
rm -rf ${DDIR}
mkdir ${DDIR}
find . -print | grep -v /CVS | cpio -dumpv ${DDIR}
find . -print | grep -v /CVS | grep -v Makefile | cpio -dumpv ${DDIR}
symlinks:
@${ECHO} installing symlink to ${DDIR}
+3 -2
View File
@@ -1,4 +1,4 @@
# $Id: Makefile,v 1.10 1994/10/24 09:56:42 sos Exp $
# $Id: Makefile,v 1.11 1994/11/08 03:58:52 phk Exp $
#
# Doing a make install builds /usr/share/examples
@@ -22,7 +22,8 @@ copies:
@-for a in ${DIRS}; do \
rm -rf ${DDIR}/$$a; \
done
find ${DIRS} -print | grep -v /CVS | cpio -dumpv ${DDIR}
find ${DIRS} -print | grep -v /CVS | \
grep -v Makefile | cpio -dumpv ${DDIR}
symlinks:
@${ECHO} installing symlinks in ${DDIR}