diff options
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> |