diff options
author | bde <bde@FreeBSD.org> | 1998-05-04 20:09:06 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-05-04 20:09:06 +0000 |
commit | f701fbc7d569ab22a7d57c4c0cba391bad3d755d (patch) | |
tree | 5d6f5afb81bfecb644f11f70cc59cbe58b46169b /usr.bin/mk_cmds | |
parent | 4c2ff0579d45e8f11accb16489583563b979e4fb (diff) | |
download | FreeBSD-src-f701fbc7d569ab22a7d57c4c0cba391bad3d755d.zip FreeBSD-src-f701fbc7d569ab22a7d57c4c0cba391bad3d755d.tar.gz |
Fixed races in `make -jN' using new yacc rules.
Diffstat (limited to 'usr.bin/mk_cmds')
-rw-r--r-- | usr.bin/mk_cmds/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/usr.bin/mk_cmds/Makefile b/usr.bin/mk_cmds/Makefile index a240c05..74a7262 100644 --- a/usr.bin/mk_cmds/Makefile +++ b/usr.bin/mk_cmds/Makefile @@ -1,13 +1,9 @@ -# $Id$ +# $Id: Makefile,v 1.5 1997/02/22 19:56:09 peter Exp $ PROG= mk_cmds -# -# NB: ct.c must come before cmd_tbl.c so that y.tab.h will be generated. -# -SRCS= mk_cmds.c options.c utils.c ct.c cmd_tbl.c +SRCS= mk_cmds.c options.c utils.c ct.y cmd_tbl.l CFLAGS+= -I. -I${.CURDIR}/../../lib/libss -DIN_MK_CMDS LFLAGS= -l -CLEANFILES+= y.tab.c y.tab.h lex.yy.c cmd_tbl.c ct.c NOMAN= # XXX LDADD+= -ll |