opnsense-src/usr.sbin/i4b/isdnmonitor/Makefile
Colin Percival d3282d6eec Disable constant merging in isdnd and isdnmonitor. This is a "make my
life easier" patch: I doubt this will affect anyone else, but the FreeBSD
Update build code was getting very confused by this.

Approved by: rwatson (mentor)
PR: bin/61087
2004-01-21 16:49:05 +00:00

17 lines
293 B
Makefile

# $FreeBSD$
PROG= isdnmonitor
MAN= isdnmonitor.8
SRCS= main.c curses.c
# compile debug support
COPTS+= -DDEBUG
# avoid wacky merging of string constants from
# source code with compile-time timestamp
COPTS+= -fno-merge-constants
DPADD= ${LIBCURSES}
LDADD= -lcurses
.include <bsd.prog.mk>