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