From cfe021dc2be09787ba79f023f091bd64ad34c95b Mon Sep 17 00:00:00 2001 From: ru Date: Fri, 13 Aug 2004 14:21:49 +0000 Subject: Replaced COPTS by equivalent CFLAGS. --- usr.sbin/i4b/isdnd/Makefile | 14 +++++++------- usr.sbin/i4b/isdnmonitor/Makefile | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'usr.sbin/i4b') diff --git a/usr.sbin/i4b/isdnd/Makefile b/usr.sbin/i4b/isdnd/Makefile index bc4fc38..ce6c51c 100644 --- a/usr.sbin/i4b/isdnd/Makefile +++ b/usr.sbin/i4b/isdnd/Makefile @@ -8,29 +8,29 @@ SRCS= rc_parse.y rc_scan.l main.c rc_config.c log.c curses.c \ y.tab.h holiday.c # compile debug support -COPTS+= -DDEBUG +CFLAGS+= -DDEBUG # avoid wacky merging of string constants from # source code with compile-time timestamp -COPTS+= -fno-merge-constants +CFLAGS+= -fno-merge-constants # enable rtprio usage -COPTS+= -DUSE_RTPRIO +CFLAGS+= -DUSE_RTPRIO -COPTS+= -I. -I${.CURDIR}/../isdnmonitor -I${.CURDIR}/../isdntel -I${.CURDIR} +CFLAGS+= -I. -I${.CURDIR}/../isdnmonitor -I${.CURDIR}/../isdntel -I${.CURDIR} .include "${.CURDIR}/../Makefile.inc" .if !defined(I4B_WITHOUT_CURSES) -COPTS+= -DUSE_CURSES +CFLAGS+= -DUSE_CURSES DPADD= ${LIBCURSES} LDADD= -lcurses .endif .if defined(I4B_EXTERNAL_MONITOR) -COPTS+= -DI4B_EXTERNAL_MONITOR +CFLAGS+= -DI4B_EXTERNAL_MONITOR .if defined(I4B_NOTCPIP_MONITOR) -COPTS+= -DI4B_NOTCPIP_MONITOR +CFLAGS+= -DI4B_NOTCPIP_MONITOR .endif .endif diff --git a/usr.sbin/i4b/isdnmonitor/Makefile b/usr.sbin/i4b/isdnmonitor/Makefile index 2eb82d4..ed241c1 100644 --- a/usr.sbin/i4b/isdnmonitor/Makefile +++ b/usr.sbin/i4b/isdnmonitor/Makefile @@ -5,11 +5,11 @@ MAN= isdnmonitor.8 SRCS= main.c curses.c # compile debug support -COPTS+= -DDEBUG +CFLAGS+= -DDEBUG # avoid wacky merging of string constants from # source code with compile-time timestamp -COPTS+= -fno-merge-constants +CFLAGS+= -fno-merge-constants DPADD= ${LIBCURSES} LDADD= -lcurses -- cgit v1.1