Makefile revision 1.9
1# $NetBSD: Makefile,v 1.9 2000/07/06 01:11:23 christos Exp $ 2 3PROG= lint1 4SRCS= cgram.y scan.l mem1.c mem.c err.c main1.c decl.c tree.c func.c \ 5 init.c emit.c emit1.c 6MAN= lint.7 7LDADD+= -ll 8DPADD+= ${LIBL} 9YHEADER=1 10CPPFLAGS+=-I${.CURDIR} -I. 11LINTFLAGS=-aehpz 12 13BINDIR= /usr/libexec 14 15scan.c: cgram.h 16 17lint.7: ${.OBJDIR}/${PROG} 18 sh ${.CURDIR}/makeman ${.OBJDIR}/${PROG} -m > ${.TARGET} 19 20.include <bsd.prog.mk> 21