mirror of
https://github.com/opnsense/src.git
synced 2026-02-24 10:20:24 -05:00
arichardson has an actual fix for the same issue that this was working around; given that we don't build with llvm today, go ahead and revert the workaround in advance.
25 lines
360 B
Makefile
25 lines
360 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR:H}
|
|
SHLIB= h_csu
|
|
SHLIB_NAME= libh_csu.so
|
|
SHLIB_MAJOR= 1
|
|
|
|
WITHOUT_STATIC=
|
|
WITHOUT_PROFILE=
|
|
WITHOUT_PIC=
|
|
|
|
CFLAGS+= -DDSO_LIB
|
|
|
|
.include "../Makefile.tests"
|
|
SRCS=
|
|
.for src in ${ATF_TESTS_C}
|
|
SRCS+= ${src}.c
|
|
.endfor
|
|
.for src in ${ATF_TESTS_CXX}
|
|
SRCS+= ${src}.cc
|
|
.endfor
|
|
|
|
LIBDIR= ${TESTSBASE}/lib/csu/dynamiclib/
|
|
|
|
.include <bsd.lib.mk>
|