mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 01:59:01 -05:00
- Move libxo.a build to subdirectory (lib/libxo/libxo/Makefile) - Add .WAIT target to delay encoder build til after libxo - Use FILES to install encoder library as csv.enc - Update import script to put xo_config.h in new location
19 lines
317 B
Makefile
19 lines
317 B
Makefile
# $FreeBSD$
|
|
|
|
LIBXOSRC= ${SRCTOP}/contrib/libxo
|
|
|
|
.PATH: ${LIBXOSRC}/encoder/test
|
|
|
|
SHLIB_NAME= libenc_test.so
|
|
|
|
LIBDIR= ${TESTSBASE}/lib/libxo
|
|
|
|
SYMLINKS+= ${LIBDIR}/${SHLIB_NAME} /usr/lib/libxo/encoder/test.enc
|
|
|
|
SRCS= enc_test.c
|
|
|
|
CFLAGS+= -I${LIBXOSRC}/libxo -I${.CURDIR:H:H}/libxo
|
|
|
|
LIBADD= xo
|
|
|
|
.include <bsd.lib.mk>
|