mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 06:42:56 -04:00
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
21 lines
431 B
Makefile
21 lines
431 B
Makefile
PACKAGE=runtime
|
|
CONFS= minfree
|
|
VAR_CRASH= /var/crash
|
|
VAR_CRASH_MODE= 0750
|
|
CONFSDIR= VAR_CRASH
|
|
PROG= savecore
|
|
LIBADD= xo z zstd
|
|
MAN= savecore.8
|
|
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/zstd/lib
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.if ${MK_DYNAMICROOT} == "no"
|
|
.warning ${PROG} built without libcasper support
|
|
.elif ${MK_CASPER} != "no" && !defined(RESCUE)
|
|
CFLAGS+= -DWITH_CASPER
|
|
LIBADD+= casper cap_fileargs cap_syslog
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|