12 lines
356 B
PHP
12 lines
356 B
PHP
|
# $NetBSD: Makefile.inc,v 1.1 1998/03/15 01:13:25 lukem Exp $
|
||
|
|
||
|
LIBCOMMON != cd ${.CURDIR}/../common;\
|
||
|
printf "xxx: .MAKE\n\t@echo \$${.OBJDIR}\n" | ${MAKE} -s -f-
|
||
|
CPPFLAGS+=-I${.CURDIR}/../common
|
||
|
DPADD+= ${LIBCOMMON}/libcommon.a
|
||
|
LDADD+= -L${LIBCOMMON} -lcommon
|
||
|
|
||
|
.if exists(${.CURDIR}/../../Makefile.inc)
|
||
|
.include "${.CURDIR}/../../Makefile.inc"
|
||
|
.endif
|