]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - usr.sbin/i4b/isdnmonitor/Makefile
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / usr.sbin / i4b / isdnmonitor / Makefile
1 # $FreeBSD$
2
3 PROG=   isdnmonitor
4 MAN=    isdnmonitor.8
5 SRCS=   main.c curses.c
6
7 # compile debug support
8 CFLAGS+= -DDEBUG
9
10 # avoid wacky merging of string constants from
11 # source code with compile-time timestamp
12 CFLAGS+= -fno-merge-constants
13
14 DPADD=  ${LIBCURSES}
15 LDADD=  -lcurses
16
17 .include <bsd.prog.mk>