ce139526b6
Submitted by: phil Reviewed by: sjg Approved by: sjg (mentor)
26 lines
313 B
Makefile
26 lines
313 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
LIBXOSRC= ${SRCTOP}/contrib/libxo
|
|
|
|
.PATH:
|
|
.PATH: ${LIBXOSRC}/xo
|
|
|
|
PROG= xo
|
|
MAN= xo.1
|
|
|
|
# XXX For xoversion.h
|
|
CFLAGS+=-I${LIBXOSRC}/libxo
|
|
|
|
# XXX For xo_config.h
|
|
CFLAGS+=-I${SRCTOP}/lib/libxo
|
|
|
|
LIBADD= xo util
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
SUBDIR+= tests
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|