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