mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-29 21:52:45 +00:00
Don't try to do a 'make bootstrap all install' in one commend. Break it
into two make commands so that make will recognize that it doesn't need to buid scan.c w/lex.
This commit is contained in:
parent
40582d7142
commit
32c1db0624
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=16526
5
Makefile
5
Makefile
@ -1,5 +1,5 @@
|
||||
#
|
||||
# $Id: Makefile,v 1.79 1996/05/04 07:12:07 markm Exp $
|
||||
# $Id: Makefile,v 1.80 1996/06/19 20:48:48 nate Exp $
|
||||
#
|
||||
# Make command line options:
|
||||
# -DCLOBBER will remove /usr/include
|
||||
@ -116,7 +116,8 @@ bootstrap:
|
||||
cd ${.CURDIR}/usr.bin/xlint/lint1 && ${MAKE} ${MK_FLAGS} install
|
||||
cd ${.CURDIR}/usr.bin/xlint/lint2 && ${MAKE} ${MK_FLAGS} install
|
||||
cd ${.CURDIR}/usr.bin/xlint/xlint && ${MAKE} ${MK_FLAGS} install
|
||||
cd ${.CURDIR}/usr.bin/lex && ${MAKE} ${MK_FLAGS} bootstrap all install
|
||||
cd ${.CURDIR}/usr.bin/lex && ${MAKE} ${MK_FLAGS} bootstrap && \
|
||||
${MAKE} ${MK_FLAGS} all install
|
||||
|
||||
reinstall: hierarchy mk includes
|
||||
@echo "--------------------------------------------------------------"
|
||||
|
Loading…
Reference in New Issue
Block a user