12 lines
374 B
Makefile
12 lines
374 B
Makefile
# $NetBSD: Makefile.inc,v 1.5 1998/06/08 06:53:47 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 ${LIBUTIL}
|
|
LDADD+= -L${LIBCOMMON} -lcommon -lutil
|
|
|
|
.if exists(${.CURDIR}/../../Makefile.inc)
|
|
.include "${.CURDIR}/../../Makefile.inc"
|
|
.endif
|