mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 15:44:04 +01:00
8d4a858381
dependencies on y.tab.h generated. It will soon be used to tell bsd.dep.mk that y.tab.h itself needs to be generated.
19 lines
382 B
Makefile
19 lines
382 B
Makefile
# $NetBSD: Makefile,v 1.3 1995/07/04 01:53:05 cgd Exp $
|
|
# $Id$
|
|
|
|
PROG= lint1
|
|
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 y.tab.h
|
|
NOMAN=
|
|
LDADD+= -ll
|
|
DPADD+= ${LIBL}
|
|
CFLAGS+=-I.
|
|
LINTFLAGS=-aehpz
|
|
|
|
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>
|