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/xlint | |
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/xlint')
-rw-r--r-- | usr.bin/xlint/lint1/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/usr.bin/xlint/lint1/Makefile b/usr.bin/xlint/lint1/Makefile index e20938e..56d3830 100644 --- a/usr.bin/xlint/lint1/Makefile +++ b/usr.bin/xlint/lint1/Makefile @@ -1,21 +1,17 @@ # $NetBSD: Makefile,v 1.3 1995/07/04 01:53:05 cgd Exp $ PROG= lint1 -SRCS= cgram.c scan.c mem1.c mem.c err.c main1.c decl.c tree.c func.c \ - init.c emit.c emit1.c y.tab.h +SRCS= cgram.y scan.l mem1.c mem.c err.c main1.c decl.c tree.c func.c \ + init.c emit.c emit1.c NOMAN= LDADD+= -ll DPADD+= ${LIBL} -YFLAGS= -d CFLAGS+=-I. LINTFLAGS=-aehpz -CLEANFILES+=y.tab.h cgram.c scan.c BINDIR= /usr/libexec # XXX: -O causes the gcc to die on the i386, when compiling tree.o CFLAGS+= -DXXX_BROKEN_GCC -y.tab.h: cgram.c - .include <bsd.prog.mk> |