2560d18180
let's standardize this. Now we are always use WITH_CASPER name. Discussed with: emaste@ MFC after: 1 month
23 lines
344 B
Makefile
23 lines
344 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.PATH: ${SRCTOP}/usr.bin/ktrace
|
|
|
|
PROG= kdump
|
|
SRCS= kdump.c subr.c
|
|
CFLAGS+= -I${SRCTOP}/usr.bin/ktrace
|
|
|
|
LIBADD= sysdecode
|
|
.if ${MK_CASPER} != "no"
|
|
LIBADD+= casper
|
|
LIBADD+= cap_grp
|
|
LIBADD+= cap_pwd
|
|
CFLAGS+=-DWITH_CASPER
|
|
.endif
|
|
|
|
#NO_WERROR?= YES
|
|
|
|
.include <bsd.prog.mk>
|