mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
14 lines
306 B
Makefile
14 lines
306 B
Makefile
# $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"
|