diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-05-18 09:05:56 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-05-18 09:05:56 +0000 |
commit | 34a18784ef72ff14a677b1e68000ec7dc5808493 (patch) | |
tree | ce607c03324d34a65e9b081246c87d8da5abc390 /usr.bin/make | |
parent | ee5c4b5cde7c27471bf9644b0192a722e7d807bd (diff) | |
download | FreeBSD-src-34a18784ef72ff14a677b1e68000ec7dc5808493.zip FreeBSD-src-34a18784ef72ff14a677b1e68000ec7dc5808493.tar.gz |
By default build make(1) as a static binary. It costs only 100k of additional
disk space, buf provides measureable speed increase for make-intensive
operations, such as pkg_version(1), `make world' and so on.
MFC after: 1 week
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.bin/make/Makefile b/usr.bin/make/Makefile index d6c1298..1ada262 100644 --- a/usr.bin/make/Makefile +++ b/usr.bin/make/Makefile @@ -12,6 +12,8 @@ SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \ lstMember.c lstNext.c lstOpen.c lstRemove.c lstReplace.c lstSucc.c .PATH: ${.CURDIR}/lst.lib +NOSHARED?= YES + # Set the shell which make(1) uses. Bourne is the default, but a decent # Korn shell works fine, and much faster. Using the C shell for this # will almost certainly break everything, but it's Unix tradition to |