mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 23:06:12 -05:00
ATF tests have a default WARNS of 0, unlike other usermode programs. Reviewed by: ngie, julian MFC after: 3 weeks Sponsored by: Spectra Logic Corporation Differential Revision: https://reviews.freebsd.org/D9933
17 lines
285 B
Makefile
17 lines
285 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= target
|
|
BINDIR= ${TESTSBASE}/libexec/rtld-elf
|
|
|
|
WARNS?= 3
|
|
CFLAGS+= -I${.CURDIR}/../libpythagoras
|
|
|
|
LDFLAGS+= -L${.OBJDIR}/../libpythagoras
|
|
DPADD+= ${.OBJDIR}/../libpythagoras/libpythagoras.a
|
|
LDADD= -lpythagoras
|
|
|
|
MAN=
|
|
|
|
.include <bsd.prog.mk>
|