mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
Bumped major number. Ncurses backend still needs improving. Other back-ends need to be written.
17 lines
280 B
Makefile
17 lines
280 B
Makefile
PROG = example
|
|
NOMAN = yet
|
|
|
|
SRCS = example.c
|
|
|
|
CFLAGS = -static #-g
|
|
|
|
.if exists(${.CURDIR}/../obj)
|
|
FORMDIR=${.CURDIR}/../obj
|
|
.else
|
|
FORMDIR=${.CURDIR}/..
|
|
.endif
|
|
|
|
LDADD = -L${FORMDIR} -lforms -ldialog -lncurses -lmytinfo -ll
|
|
DPADD = ${LIBFORMS} ${LIBNCURSES}
|
|
|
|
.include <bsd.prog.mk>
|