mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 06:42:56 -04:00
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
22 lines
359 B
Makefile
22 lines
359 B
Makefile
.include <src.opts.mk>
|
|
|
|
PACKAGE= runtime
|
|
|
|
LIBXOSRC= ${SRCTOP}/contrib/libxo
|
|
|
|
.PATH: ${LIBXOSRC}/encoder/csv
|
|
|
|
SHLIBDIR= ${LIBDIR}/libxo/encoder
|
|
SHLIB_NAME= csv.enc
|
|
|
|
SRCS= enc_csv.c
|
|
|
|
CFLAGS+=-I${LIBXOSRC}/libxo -I${.CURDIR}
|
|
CFLAGS+=-DXO_ENCODERDIR=\"${LIBDIR}/libxo/encoder\"
|
|
|
|
LIBADD= util xo
|
|
LDFLAGS += -L${.OBJDIR:H:H}/libxo
|
|
|
|
WARNS?= 5
|
|
|
|
.include <bsd.lib.mk>
|