xref: /freebsd-11-stable/usr.bin/xlint/lint1/Makefile (revision b626f5a73a48f44a31a200291b141e1da408a2ff)
1#	$NetBSD: Makefile,v 1.3 1995/07/04 01:53:05 cgd Exp $
2# $FreeBSD$
3
4PROG=	lint1
5SRCS=	cgram.y scan.l mem1.c mem.c err.c main1.c decl.c tree.c func.c \
6	init.c emit.c emit1.c inittyp.c
7MAN=	lint.7
8CLEANFILES= lint.7
9
10LIBADD=	l m
11CFLAGS+= -I. -I${.CURDIR}
12LINTFLAGS=-aehpz
13
14BINDIR=	${LIBEXECDIR}
15
16.PATH: ${.CURDIR}/../common
17
18lint.7: makeman
19	sh ${.CURDIR}/makeman ${DESTDIR}${BINDIR}/${PROG} -m >${.TARGET}
20
21.include <bsd.prog.mk>
22