e633c437ef
obj dir is only indirectly related to the location of libtxi.a's obj dir). Fixed about 3 style bugs in previous commit. Fixed my bug in rev.1.7. "../../Makefile.inc" worked as an alias for "../Makefile.inc" in some cases, but it gives endless recursion when there is an obj dir in one of the subdirs.
18 lines
390 B
Makefile
18 lines
390 B
Makefile
# $Id: Makefile.inc,v 1.8 1999/01/14 20:00:26 markm Exp $
|
|
|
|
TXIDIR= ${.CURDIR}/../../../../contrib/texinfo
|
|
|
|
.if exists(${.OBJDIR}/../libintl)
|
|
LIBINTL= ${.OBJDIR}/../libintl/libintl.a
|
|
.else
|
|
LIBINTL= ${.CURDIR}/../libintl/libintl.a
|
|
.endif
|
|
|
|
.if exists(${.OBJDIR}/../libtxi)
|
|
LIBTXI= ${.OBJDIR}/../libtxi/libtxi.a
|
|
.else
|
|
LIBTXI= ${.CURDIR}/../libtxi/libtxi.a
|
|
.endif
|
|
|
|
.include "../Makefile.inc"
|