freebsd-dev/sbin/savecore/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
444 B
Makefile
Raw Normal View History

# $FreeBSD$
2002-05-13 12:07:57 +00:00
PACKAGE=runtime
CONFS= minfree
VAR_CRASH= /var/crash
VAR_CRASH_MODE= 0750
CONFSDIR= VAR_CRASH
2002-04-01 08:27:19 +00:00
PROG= savecore
LIBADD= xo z zstd
2002-05-13 12:07:57 +00:00
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>