mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-20 23:54:38 +01:00
90e655ea4e
These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
14 lines
174 B
Makefile
14 lines
174 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= isdnmonitor
|
|
SRCS= main.c curses.c
|
|
MAN= isdnmonitor.8
|
|
|
|
# compile debug support
|
|
COPTS+= -DDEBUG
|
|
|
|
DPADD= ${LIBCURSES}
|
|
LDADD= -lcurses
|
|
|
|
.include <bsd.prog.mk>
|