aboutsummaryrefslogtreecommitdiff
path: root/share/FAQ/Makefile
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1995-12-30 19:02:48 +0000
committerPeter Wemm <peter@FreeBSD.org>1995-12-30 19:02:48 +0000
commita5b996a7ecea192e05c848269fbfb40c1e7c50ef (patch)
treeb43d0e66d9963acc026a6322b81fd219d273736b /share/FAQ/Makefile
parentdf2fbf15a2e56a16c3b54b93a3369b662b6f20e5 (diff)
recording cvs-1.6 file death
Notes
Notes: svn path=/cvs2svn/branches/ATT/; revision=13122
Diffstat (limited to 'share/FAQ/Makefile')
-rw-r--r--share/FAQ/Makefile28
1 files changed, 0 insertions, 28 deletions
diff --git a/share/FAQ/Makefile b/share/FAQ/Makefile
deleted file mode 100644
index 033633b8ea29..000000000000
--- a/share/FAQ/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-# $Id: Makefile,v 1.1 1994/11/08 03:58:48 phk Exp $
-#
-# Doing a make install builds /usr/share/examples
-
-DDIR= ${DESTDIR}/usr/share/FAQ
-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 ${DDIR}
- rm -rf ${DDIR}
- mkdir ${DDIR}
- find . -print | grep -v /CVS | grep -v Makefile | cpio -dumpv ${DDIR}
-
-symlinks:
- @${ECHO} installing symlink to ${DDIR}
- rm -rf ${DDIR}; \
- ln -s ${.CURDIR} ${DDIR}; \
-
-.include <bsd.prog.mk>