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