aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAdam David <adam@FreeBSD.org>1996-11-01 19:03:33 +0000
committerAdam David <adam@FreeBSD.org>1996-11-01 19:03:33 +0000
commit32ec48a5bc922ce80ce3a9293308be41a068ed9f (patch)
tree444e593482c4014ac75a8ebf6f84d48809a49267 /Makefile
parentd919888163928142efa71fec61565bd849ebb9a9 (diff)
downloadsrc-32ec48a5bc922ce80ce3a9293308be41a068ed9f.tar.gz
src-32ec48a5bc922ce80ce3a9293308be41a068ed9f.zip
use NOSHARE variable to skip 'share' directory, useful for shared installations
or for faster make of executables.
Notes
Notes: svn path=/head/; revision=19320
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 54222131edfd..d73724cad9d3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
#
-# $Id: Makefile,v 1.107 1996/10/14 12:58:47 peter Exp $
+# $Id: Makefile,v 1.108 1996/10/25 14:22:50 bde Exp $
#
# Make command line options:
# -DCLOBBER will remove /usr/include
@@ -15,6 +15,7 @@
# -DNOPROFILE do not build profiled libraries
# -DNOSECURE do not go into secure subdir
# -DNOGAMES do not go into games subdir
+# -DNOSHARE do not go into share subdir
#
# The intended user-driven targets are:
@@ -59,7 +60,7 @@ SUBDIR+= libexec
.if exists(sbin)
SUBDIR+= sbin
.endif
-.if exists(share)
+.if exists(share) && !defined(NOSHARE)
SUBDIR+= share
.endif
.if exists(sys)