mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 00:58:21 -05:00
13 lines
273 B
Makefile
13 lines
273 B
Makefile
# $FreeBSD$
|
|
|
|
SHLIB_NAME= bus.so
|
|
SRCS= lang.c
|
|
|
|
# Set PYTHON to the version to compile against.
|
|
# E.g. "python2.7", "python3.6", etc...
|
|
PYTHON= python3.6m
|
|
|
|
CFLAGS+= -I${.CURDIR}/.. -I/usr/local/include/${PYTHON}
|
|
LDFLAGS+= -L/usr/local/lib -l${PYTHON}
|
|
|
|
.include <bsd.lib.mk>
|