]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - usr.bin/xlint/lint1/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / usr.bin / xlint / lint1 / Makefile
1 #       $NetBSD: Makefile,v 1.3 1995/07/04 01:53:05 cgd Exp $
2 # $FreeBSD$
3
4 PROG=   lint1
5 SRCS=   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
7 MAN=    lint.7
8 CLEANFILES= lint.7
9
10 LDADD=  -ll -lm
11 DPADD=  ${LIBL} ${LIBM}
12 CFLAGS+= -I. -I${.CURDIR}
13 LINTFLAGS=-aehpz
14
15 BINDIR= /usr/libexec
16
17 .PATH: ${.CURDIR}/../common
18
19 lint.7: makeman
20         sh ${.CURDIR}/makeman ${DESTDIR}${BINDIR}/${PROG} -m >${.TARGET}
21
22 .include <bsd.prog.mk>