diff options
author | Bruce Evans <bde@FreeBSD.org> | 1998-05-04 20:09:06 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1998-05-04 20:09:06 +0000 |
commit | b681d90662103774ec7811d31402a3d72d79c3a0 (patch) | |
tree | c8ec75d059eed96ac31afae431487a7f988bdd55 /usr.bin/mk_cmds/Makefile | |
parent | dd8eff227e110891478d0697be186ba77c59d937 (diff) | |
download | src-b681d90662103774ec7811d31402a3d72d79c3a0.tar.gz src-b681d90662103774ec7811d31402a3d72d79c3a0.zip |
Fixed races in `make -jN' using new yacc rules.
Notes
Notes:
svn path=/head/; revision=35708
Diffstat (limited to 'usr.bin/mk_cmds/Makefile')
-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 a240c05b1fa5..74a72624aac2 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 |