96a322df43
This is just a vendor import by now. I'll wait until i'll get the imported files back via CTM before applying the FreeBSD patches. Don't use it yet. Submitted by: Jochen Pohl <jpo.drs@sni.de> Obtained from: (NetBSD -- this version is directly from Jochen)
21 lines
376 B
Makefile
21 lines
376 B
Makefile
# $NetBSD: Makefile,v 1.2 1995/07/03 21:25:05 cgd Exp $
|
|
|
|
LIBS= llib-lposix.ln llib-lstdc.ln
|
|
|
|
all: ${LIBS}
|
|
|
|
install:
|
|
install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${NONBINMODE} \
|
|
${LIBS} ${DESTDIR}${LINTLIBDIR}
|
|
|
|
clean cleanall:
|
|
rm -f ${LIBS}
|
|
|
|
llib-lposix.ln: llib-lposix
|
|
lint -Cposix ${.ALLSRC}
|
|
|
|
llib-lstdc.ln: llib-lstdc
|
|
lint -Cstdc ${.ALLSRC}
|
|
|
|
.include <bsd.prog.mk>
|