c9dfae71a8
Makefile.inc in parent directory (e.g. when checked out from cvs as a module). MFC after: 2 weeks
16 lines
284 B
Makefile
16 lines
284 B
Makefile
# $FreeBSD$
|
|
|
|
.if exists(${.OBJDIR}/../lib)
|
|
LIBINSTALL= ${.OBJDIR}/../lib/libinstall.a
|
|
.else
|
|
LIBINSTALL= ${.CURDIR}/../lib/libinstall.a
|
|
.endif
|
|
|
|
# Inherit BINDIR from one level up.
|
|
.if !target(__foobar__)
|
|
__foobar__:
|
|
.if exists(../Makefile.inc)
|
|
.include "../Makefile.inc"
|
|
.endif
|
|
.endif
|