bd42830f0f
(See commit log for usr.bin/xlint/Makefile,v 1.11 for what was wrong with enabling build of lint libraries in rev. 1.12.) This fixes cross-arch compiles (running binaries for a different arch when generating lint.7 and lint libraries) and cross-branch compiles (4.x -> 5.0 buildworld should be working again).
18 lines
328 B
Makefile
18 lines
328 B
Makefile
# $NetBSD: Makefile,v 1.7 2000/06/14 20:22:19 matt Exp $
|
|
# $FreeBSD$
|
|
|
|
LIBS= llib-lposix.ln llib-lstdc.ln
|
|
|
|
FILES= ${LIBS}
|
|
FILESDIR= ${LINTLIBDIR}
|
|
|
|
CLEANFILES+= ${LIBS}
|
|
|
|
llib-lposix.ln: llib-lposix
|
|
${LINT} ${LINTFLAGS} -Cposix ${.ALLSRC}
|
|
|
|
llib-lstdc.ln: llib-lstdc
|
|
${LINT} ${LINTFLAGS} -Cstdc ${.ALLSRC}
|
|
|
|
.include <bsd.prog.mk>
|