mirror of
https://github.com/opnsense/src.git
synced 2026-02-23 01:46:42 -05:00
19 lines
279 B
Makefile
19 lines
279 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE= runtime
|
|
|
|
PROG= logger
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
|
|
.if ${MK_CASPER} != "no"
|
|
LIBADD+= casper
|
|
LIBADD+= cap_syslog
|
|
CFLAGS+=-DWITH_CASPER
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|