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