add 'domestic' to subdirs list, if it exists.
This commit is contained in:
parent
aef3817e0d
commit
d0dbb18afc
9
Makefile
9
Makefile
@ -1,4 +1,4 @@
|
||||
# $Id: Makefile,v 1.20 1994/12/22 12:43:45 cgd Exp $
|
||||
# $Id: Makefile,v 1.21 1995/02/19 12:20:06 cgd Exp $
|
||||
|
||||
# NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW
|
||||
|
||||
@ -7,6 +7,10 @@ SUBDIR+= gnu
|
||||
|
||||
SUBDIR+= sys
|
||||
|
||||
.if exists(domestic) && !defined(EXPORTABLE_SYSTEM)
|
||||
SUBDIR+= domestic
|
||||
.endif
|
||||
|
||||
.if exists(regress)
|
||||
.ifmake !(install)
|
||||
SUBDIR+= regress
|
||||
@ -29,6 +33,9 @@ build:
|
||||
${MAKE} cleandir
|
||||
(cd lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)
|
||||
(cd gnu/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)
|
||||
.if exists(domestic)
|
||||
(cd domestic/libcrypt && ${MAKE} depend && ${MAKE} && ${MAKE} install)
|
||||
.endif
|
||||
.if exists(kerberosIV)
|
||||
(cd kerberosIV && ${MAKE} depend && ${MAKE} && ${MAKE} install)
|
||||
.endif
|
||||
|
Loading…
Reference in New Issue
Block a user