Home | History | Annotate | Line # | Download | only in lint1
Makefile revision 1.9
      1 #	$NetBSD: Makefile,v 1.9 2000/07/06 01:11:23 christos Exp $
      2 
      3 PROG=	lint1
      4 SRCS=	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
      6 MAN=	lint.7
      7 LDADD+=	-ll
      8 DPADD+=	${LIBL}
      9 YHEADER=1
     10 CPPFLAGS+=-I${.CURDIR} -I.
     11 LINTFLAGS=-aehpz
     12 
     13 BINDIR=	/usr/libexec
     14 
     15 scan.c: cgram.h
     16 
     17 lint.7:	${.OBJDIR}/${PROG}
     18 	sh ${.CURDIR}/makeman ${.OBJDIR}/${PROG} -m > ${.TARGET}
     19 
     20 .include <bsd.prog.mk>
     21