mirror of
https://github.com/opnsense/src.git
synced 2026-04-14 05:47:18 -04:00
This tests that with RTLD_DEEPBIND, symbols are looked up in all of the object's needed objects before the global object. PR: 275393 Reviewed by: kib Sponsored by: NetApp, Inc. Sponsored by: Klara, Inc. (cherry picked from commit d9c543b6b0cabea6e6679d70b4e701018e7eab80)
16 lines
255 B
Makefile
16 lines
255 B
Makefile
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= target
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
WARNS?= 3
|
|
CFLAGS+= -I${.CURDIR}/../libpythagoras
|
|
|
|
LDFLAGS+= -L${.OBJDIR}/../libpythagoras
|
|
DPADD+= ${.OBJDIR}/../libpythagoras/libpythagoras.a
|
|
LDADD= -lpythagoras
|
|
|
|
MAN=
|
|
|
|
.include <bsd.prog.mk>
|