freebsd-dev/usr.bin/xlint/llib/Makefile
Sheldon Hearn 76f1a3e75f Populate /usr/libdata/lint again. David Malone <dwmalone@maths.tcd.ie>
is responsible for getting me to look at the NetBSD makefiles. :-)

Obtained from:	NetBSD
2000-01-14 10:02:27 +00:00

22 lines
388 B
Makefile

# $NetBSD: Makefile,v 1.2 1995/07/03 21:25:05 cgd Exp $
# $FreeBSD$
LIBS= llib-lposix.ln llib-lstdc.ln
all: ${LIBS}
install:
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${LIBMODE} \
${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>