blob: 2a3b8fa94c4615714d959f82f3205931e007a613 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: Makefile.lib,v 1.1.1.1 2001/04/19 14:33:07 wiz Exp $
.include <bsd.own.mk>
LIBGROFFDIR!=cd ${.CURDIR}/../libgroff && ${PRINTOBJDIR}
LIBDRIVERDIR!=cd ${.CURDIR}/../libdriver && ${PRINTOBJDIR}
LIBBIBDIR!=cd ${.CURDIR}/../libbib && ${PRINTOBJDIR}
LIBGROFF= ${LIBGROFFDIR}/libgroff.a
LIBDRIVER= ${LIBDRIVERDIR}/libdriver.a
LIBBIB= ${LIBBIBDIR}/libbib.a
.if exists(../Makefile.comp)
.include "../Makefile.comp"
.endif
|