mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-26 10:53:39 +01:00
d0b2dbfa0e
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
13 lines
261 B
Makefile
13 lines
261 B
Makefile
|
|
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>
|