97ea65b2cb
This is just a vendor import by now. I'll wait until i'll get the imported files back via CTM before applying the FreeBSD patches. Don't use it yet. Submitted by: Jochen Pohl <jpo.drs@sni.de> Obtained from: (NetBSD -- this version is directly from Jochen)
20 lines
413 B
Makefile
20 lines
413 B
Makefile
# $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
|
|
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
|
|
|
|
.include <bsd.prog.mk>
|