13 lines
421 B
Makefile
13 lines
421 B
Makefile
# $NetBSD: Makefile.inc,v 1.6 1999/08/19 14:37:36 agc Exp $
|
|
# Original from Freebsd, no rcs id.
|
|
|
|
LIBINSTALL != cd ${.CURDIR}/../lib;\
|
|
printf "xxx: .MAKE\n\t@echo \$${.OBJDIR}\n" | ${MAKE} -s -f-
|
|
CPPFLAGS+=-I${.CURDIR}/../lib ${DEBUG} -DBINDIR='"${BINDIR}"'
|
|
DPADD+= ${LIBINSTALL}/libinstall.a
|
|
LDADD+= -L${LIBINSTALL} -linstall
|
|
|
|
.if exists(${.CURDIR}/../../Makefile.inc)
|
|
.include "${.CURDIR}/../../Makefile.inc"
|
|
.endif
|