9e4c5144e6
Reviewed by: AllanJude, emaste Differential Revision: https://reviews.freebsd.org/D14409
16 lines
225 B
Makefile
16 lines
225 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= wc
|
|
LIBADD= xo
|
|
|
|
.if ${MK_CASPER} != "no"
|
|
LIBADD+= casper
|
|
LIBADD+= cap_fileargs
|
|
CFLAGS+=-DWITH_CASPER
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|