mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 11:14:18 +01:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
15 lines
307 B
Makefile
15 lines
307 B
Makefile
ATF_TESTS_C+= proc_test
|
|
|
|
PROGS= target_prog
|
|
SRCS_target_prog= target_prog.c
|
|
BINDIR_target_prog= ${TESTSDIR}
|
|
|
|
LIBADD= elf proc rtld_db util
|
|
|
|
# Ensure that symbols aren't stripped from the test program, as they're needed
|
|
# for testing symbol lookup.
|
|
STRIP=
|
|
CFLAGS.target_prog.c+= -O0
|
|
|
|
.include <bsd.test.mk>
|