c27ec88714
This compiles just fine with recent gcc's.
16 lines
307 B
Makefile
16 lines
307 B
Makefile
# $NetBSD: Makefile,v 1.3 1995/07/04 01:53:05 cgd Exp $
|
|
# $FreeBSD$
|
|
|
|
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. -I${.CURDIR}
|
|
LINTFLAGS=-aehpz
|
|
|
|
BINDIR= /usr/libexec
|
|
|
|
.include <bsd.prog.mk>
|