diff options
| author | Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> | 2001-04-24 20:23:37 +0000 |
|---|---|---|
| committer | Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> | 2001-04-24 20:23:37 +0000 |
| commit | b94ea153071864b088dcb651f2db774c5b92733e (patch) | |
| tree | f36d137485e759050fb9371e437c683174af736c /usr.bin | |
| parent | e41281f1d27343bd787e5e9c5b99e5064495c06e (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/xlint/llib/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/xlint/llib/Makefile b/usr.bin/xlint/llib/Makefile index 203a4afb5e9d9..2c569f51f1246 100644 --- a/usr.bin/xlint/llib/Makefile +++ b/usr.bin/xlint/llib/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ LIBS= llib-lposix.ln llib-lstdc.ln +LINT= ${.OBJDIR}/../xlint/xlint all: ${LIBS} @@ -13,9 +14,9 @@ clean cleanall: rm -f ${LIBS} llib-lposix.ln: llib-lposix - lint -Cposix ${.ALLSRC} + ${LINT} -Cposix ${.ALLSRC} llib-lstdc.ln: llib-lstdc - lint -Cstdc ${.ALLSRC} + ${LINT} -Cstdc ${.ALLSRC} .include <bsd.prog.mk> |
