diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2015-11-19 23:46:56 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2015-11-19 23:46:56 +0000 |
commit | d1291b54a53c2cddf3900742b13ebf4cc306d447 (patch) | |
tree | a3b4e3e1a139cd2cfa9ee0c04d9617524dc22de1 /usr.bin | |
parent | 0d6d974113b5079c85ca6736bf970262e637ea5c (diff) |
make sure parse.c depends on initparse.c
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/lex/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/lex/Makefile b/usr.bin/lex/Makefile index 2587c3fd73d..6f2e39754be 100644 --- a/usr.bin/lex/Makefile +++ b/usr.bin/lex/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.13 2015/11/19 19:45:28 tedu Exp $ +# $OpenBSD: Makefile,v 1.14 2015/11/19 23:46:55 tedu 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 @@ -30,7 +30,7 @@ MLINKS= flex.1 lex.1 flex.1 flex++.1 VERSION="2.5.39" # Our yacc is too old to compile parse.y; use bootstrapped parse.c instead -parse.h parse.c: parse.y +parse.h parse.c: parse.y initparse.c initparse.h cp ${.CURDIR}/initparse.c parse.c cp ${.CURDIR}/initparse.h parse.h |