Submitted by: jkh
Build lib/libncurses and lib/libtermcap early in the libraries: target as other libraries depend on them.
This commit is contained in:
parent
c2dcb19d11
commit
862b8c222d
10
Makefile
10
Makefile
@ -1,5 +1,5 @@
|
||||
#
|
||||
# $Id: Makefile,v 1.54 1995/05/05 18:00:30 rgrimes Exp $
|
||||
# $Id: Makefile,v 1.55 1995/05/06 03:59:58 rgrimes Exp $
|
||||
#
|
||||
# Make command line options:
|
||||
# -DCLOBBER will remove /usr/include and MOST of /usr/lib
|
||||
@ -262,6 +262,14 @@ libraries:
|
||||
cd ${.CURDIR}/lib/libcompat && \
|
||||
${MAKE} depend all install
|
||||
.endif
|
||||
.if exists(lib/libncurses)
|
||||
cd ${.CURDIR}/lib/libncurses && \
|
||||
${MAKE} depend all install
|
||||
.endif
|
||||
.if exists(lib/libtermcap)
|
||||
cd ${.CURDIR}/lib/libtermcap && \
|
||||
${MAKE} depend all install
|
||||
.endif
|
||||
.if exists(gnu)
|
||||
cd ${.CURDIR}/gnu/lib && \
|
||||
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
|
||||
|
Loading…
Reference in New Issue
Block a user