freebsd-dev/usr.sbin/i4b/isdnd/Makefile

35 lines
725 B
Makefile
Raw Normal View History

1999-08-28 01:35:59 +00:00
# $FreeBSD$
PROG = isdnd
SRCS = rc_parse.y rc_scan.l main.c rc_config.c log.c curses.c \
process.c rates.c msghdl.c fsm.c support.c timer.c \
exec.c dial.c monitor.c pcause.c controller.c alias.c \
2000-10-09 14:22:51 +00:00
y.tab.h holiday.c
2000-12-07 16:35:21 +00:00
COPTS += -I. -I${.CURDIR}/../isdnmonitor -I${.CURDIR}/../isdntel -I${.CURDIR}
# compile debug support
COPTS += -DDEBUG
# enable rtprio usage
COPTS += -DUSE_RTPRIO
MAN8 = isdnd.8
MAN5 = isdnd.rc.5 isdnd.rates.5 isdnd.acct.5
.if !defined(I4B_WITHOUT_CURSES)
COPTS += -DUSE_CURSES
2000-09-16 04:19:07 +00:00
DPADD = ${LIBCURSES}
LDADD = -lcurses
.endif
.if defined(I4B_EXTERNAL_MONITOR)
COPTS += -DI4B_EXTERNAL_MONITOR
.if defined(I4B_NOTCPIP_MONITOR)
COPTS += -DI4B_NOTCPIP_MONITOR
.endif
.endif
.include <bsd.prog.mk>