18 lines
307 B
Makefile
18 lines
307 B
Makefile
# $NetBSD: Makefile,v 1.7 1999/02/13 02:54:57 lukem Exp $
|
|
|
|
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
|
|
MKMAN= no
|
|
LDADD+= -ll
|
|
DPADD+= ${LIBL}
|
|
YHEADER=1
|
|
CPPFLAGS+=-I.
|
|
LINTFLAGS=-aehpz
|
|
|
|
BINDIR= /usr/libexec
|
|
|
|
scan.c: cgram.h
|
|
|
|
.include <bsd.prog.mk>
|