blob: f13fa38c6943791c0f6ffe590769f4326bce58fe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $FreeBSD$
TXIDIR= ${.CURDIR}/../../../../contrib/texinfo
.if exists(${.OBJDIR}/../libtxi)
LIBTXI= ${.OBJDIR}/../libtxi/libtxi.a
.else
LIBTXI= ${.CURDIR}/../libtxi/libtxi.a
.endif
CFLAGS+= -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" \
-I${TXIDIR} -I${TXIDIR}/lib
.include "../Makefile.inc"
|