diff options
author | jkh <jkh@FreeBSD.org> | 1997-10-05 09:40:24 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1997-10-05 09:40:24 +0000 |
commit | 418d0a6a92470af062b69dd63c64f3166ee615e5 (patch) | |
tree | 7f06509995affc58ef8727989dc29f3a49b10feb /secure/Makefile | |
parent | 038c3f0595c56a98acb9161846fdfa51640a0e4b (diff) | |
download | FreeBSD-src-418d0a6a92470af062b69dd63c64f3166ee615e5.zip FreeBSD-src-418d0a6a92470af062b69dd63c64f3166ee615e5.tar.gz |
Changes to support full make parallelism (-j<n>) in the world
target.
Reviewed by: <many different folks>
Submitted by: Nickolay N. Dudorov" <nnd@nnd.itfs.nsk.su>
Diffstat (limited to 'secure/Makefile')
-rw-r--r-- | secure/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/secure/Makefile b/secure/Makefile index e91781f..7d23aa1 100644 --- a/secure/Makefile +++ b/secure/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.11 1997/02/22 14:40:11 peter Exp $ # lib must be first, or it will not work. This is because we reference # the lib's in the directory where they are built from the binaries we @@ -12,9 +12,9 @@ CODAI= ${MAKE} ${MFLAGS} cleandir; \ ${MAKE} ${MFLAGS} obj; \ ${MAKE} ${MFLAGS} depend all install -CODAD= ${MAKE} ${MFLAGS} MAKE_EBONES=yes cleandir; \ - ${MAKE} ${MFLAGS} MAKE_EBONES=yes obj; \ - ${MAKE} ${MFLAGS} MAKE_EBONES=yes depend all distribute +CODAD= ${MAKE} ${MFLAGS} cleandir; \ + ${MAKE} ${MFLAGS} obj; \ + ${MAKE} ${MFLAGS} depend all distribute # These are the programs which depend on secure libs sprog: |