40 lines
933 B
Makefile
40 lines
933 B
Makefile
# $NetBSD: Makefile,v 1.11 2011/06/20 07:44:02 mrg Exp $
|
|
|
|
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 \
|
|
holiday.c
|
|
|
|
CPPFLAGS+= -I${.CURDIR}/../isdnmonitor -I${.CURDIR}/../isdntel
|
|
CPPFLAGS+= -I${.CURDIR} -I${.OBJDIR}
|
|
|
|
# compile debug support
|
|
CPPFLAGS+= -DDEBUG
|
|
|
|
MAN = isdnd.8 isdnd.rc.5 isdnd.rates.5 isdnd.acct.5
|
|
|
|
LDADD+=-ly -ll
|
|
YHEADER=1
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.if !defined(I4B_WITHOUT_CURSES)
|
|
CPPFLAGS+= -DUSE_CURSES
|
|
LDADD += -lcurses
|
|
LDADD += -lterminfo
|
|
.endif
|
|
|
|
.if defined(I4B_EXTERNAL_MONITOR)
|
|
CPPFLAGS+= -DI4B_EXTERNAL_MONITOR
|
|
.if defined(I4B_NOTCPIP_MONITOR)
|
|
CPPFLAGS+= -DI4B_NOTCPIP_MONITOR
|
|
.endif
|
|
.endif
|
|
|
|
.if defined(HAVE_GCC) || defined(HAVE_PCC)
|
|
COPTS.alias.c+= -Wno-pointer-sign
|
|
COPTS.holiday.c+= -Wno-pointer-sign
|
|
COPTS.monitor.c+= -Wno-pointer-sign
|
|
.endif
|