Makefile revision 75923
1#	$NetBSD: Makefile,v 1.2 1995/07/03 21:25:05 cgd Exp $
2# $FreeBSD: head/usr.bin/xlint/llib/Makefile 75923 2001-04-24 20:23:37Z asmodai $
3
4LIBS=	llib-lposix.ln llib-lstdc.ln
5LINT=	${.OBJDIR}/../xlint/xlint
6
7all:	${LIBS}
8
9install:
10	${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${LIBMODE} \
11	    ${LIBS} ${DESTDIR}${LINTLIBDIR}
12
13clean cleanall:
14	rm -f ${LIBS}
15
16llib-lposix.ln: llib-lposix
17	${LINT} -Cposix ${.ALLSRC}
18
19llib-lstdc.ln: llib-lstdc
20	${LINT} -Cstdc ${.ALLSRC}
21
22.include <bsd.prog.mk>
23