mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 09:41:05 -04:00
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
17 lines
293 B
Makefile
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>
|