12 lines
370 B
Makefile
12 lines
370 B
Makefile
# $NetBSD: Makefile.inc,v 1.4 1997/10/25 06:58:19 lukem Exp $
|
|
|
|
LIBCOMMON != cd ${.CURDIR}/../common_source;\
|
|
printf "xxx: .MAKE\n\t@echo \$${.OBJDIR}\n" | ${MAKE} -s -f-
|
|
CPPFLAGS+=-I${.CURDIR}/../common_source
|
|
DPADD+= ${LIBCOMMON}/libcommon.a
|
|
LDADD+= -L${LIBCOMMON} -lcommon
|
|
|
|
.if exists(${.CURDIR}/../../Makefile.inc)
|
|
.include "${.CURDIR}/../../Makefile.inc"
|
|
.endif
|