summaryrefslogtreecommitdiff
path: root/share/FAQ/Makefile
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1994-11-08 03:58:52 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1994-11-08 03:58:52 +0000
commitca6aa03bec22d12b38561712ec340a00a0c8a58a (patch)
tree564cf5a1e0792a75ccb780703482604aa325fee8 /share/FAQ/Makefile
parentea6351cbc743e07529faf6ec1ab338ca5d9d8788 (diff)
Notes
Diffstat (limited to 'share/FAQ/Makefile')
-rw-r--r--share/FAQ/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/share/FAQ/Makefile b/share/FAQ/Makefile
new file mode 100644
index 000000000000..882971cf916b
--- /dev/null
+++ b/share/FAQ/Makefile
@@ -0,0 +1,28 @@
+# $Id: Makefile,v 1.10 1994/10/24 09:56:42 sos 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 | cpio -dumpv ${DDIR}
+
+symlinks:
+ @${ECHO} installing symlink to ${DDIR}
+ rm -rf ${DDIR}; \
+ ln -s ${.CURDIR} ${DDIR}; \
+
+.include <bsd.prog.mk>