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 /usr.bin/lex | |
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 'usr.bin/lex')
-rw-r--r-- | usr.bin/lex/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/lex/Makefile b/usr.bin/lex/Makefile index 63f36e9..a63599f 100644 --- a/usr.bin/lex/Makefile +++ b/usr.bin/lex/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.10 1997/02/22 19:55:34 peter Exp $ # # By default, flex will be configured to generate 8-bit scanners only if the # -8 flag is given. If you want it to always generate 8-bit scanners, add @@ -15,6 +15,7 @@ LINKS+= ${BINDIR}/lex ${BINDIR}/flex LINKS+= ${BINDIR}/lex ${BINDIR}/flex++ SRCS= scan.c ccl.c dfa.c ecs.c gen.c main.c misc.c nfa.c parse.c \ + parse.h \ skel.c sym.c tblcmp.c yylex.c LFLAGS+= -is CFLAGS+= -I. -I${.CURDIR} @@ -34,6 +35,7 @@ beforeinstall: ${.CURDIR}/FlexLexer.h ${DESTDIR}/usr/include/g++ +.ORDER: parse.c parse.h parse.c parse.h: parse.y $(YACC) -d $(.CURDIR)/parse.y mv -f y.tab.c parse.c @@ -46,7 +48,6 @@ bootstrap: initscan.c cp -f ${.CURDIR}/initscan.c scan.c ; \ } -beforedepend: parse.h scan.o: parse.h test: check |