opnsense-src/tools/regression/security/cap_test/Makefile
Warner Losh e9ac41698b Remove residual blank line at start of Makefile
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
2024-07-15 16:43:39 -06:00

24 lines
505 B
Makefile

PROG= cap_test
SRCS= cap_test.c \
cap_test_capmode.c \
cap_test_capabilities.c \
cap_test_fcntl.c \
cap_test_pdfork.c \
cap_test_pdkill.c \
cap_test_relative.c \
cap_test_sysctl.c \
WARNS= 3
MAN=
# Use headers and libc from the build, if available.
KERNCONF?= GENERIC
OBJROOT= ${.OBJDIR}/../../../../
OBJKERN= ${OBJROOT}/sys/${KERNCONF}
SRCROOT= ${.CURDIR}/../../../../
CFLAGS+= -DMACHINE=\"${MACHINE}\" -I${OBJKERN} -I${SRCROOT}/sys
LDFLAGS+= -L${OBJROOT}/lib/libc -lc
.include <bsd.prog.mk>