mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-24 09:13:37 +01:00
da4f5bdaff
Python 2.7 will retire on Januari 1, 2020.
14 lines
273 B
Makefile
14 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>
|