blob: 6a4237fe1f3e97bf504040d071ba673d5a49fe92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $NetBSD: Makefile.inc,v 1.5 2001/01/07 08:00:58 enami Exp $
.include <bsd.own.mk>
LIBCOMMON != cd ${.CURDIR}/../common_source && ${PRINTOBJDIR}
CPPFLAGS+=-I${.CURDIR}/../common_source
DPADD+= ${LIBCOMMON}/libcommon.a
LDADD+= -L${LIBCOMMON} -lcommon
.if exists(${.CURDIR}/../../Makefile.inc)
.include "${.CURDIR}/../../Makefile.inc"
.endif
|