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/colldef | |
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/colldef')
-rw-r--r-- | usr.bin/colldef/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/colldef/Makefile b/usr.bin/colldef/Makefile index 295fe3f..9fe2f68 100644 --- a/usr.bin/colldef/Makefile +++ b/usr.bin/colldef/Makefile @@ -1,13 +1,11 @@ -# $Id$ +# $Id: Makefile,v 1.11 1997/02/22 19:54:30 peter Exp $ PROG = colldef LFLAGS = -8 -i -YFLAGS = -d CFLAGS += -I. -I${.CURDIR}/../../lib/libc/locale -DCOLLATE_DEBUG -SRCS = parse.c scan.c +SRCS = parse.y scan.l LDADD = -ll DPADD = ${LIBL} -CLEANFILES += lex.yy.c parse.c scan.c y.tab.[ch] SUBDIR = data .include <bsd.prog.mk> |