mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 00:58:21 -05:00
input fields. It reads a template file passed to init_forms(char *) and creates a curses based form editor. See the examples directory for a basic demo.
7 lines
143 B
Makefile
7 lines
143 B
Makefile
PROG = tform
|
|
|
|
CFLAGS = -Wall -I. -I${.CURDIR}
|
|
LDADD = -lforms -lncurses -ll
|
|
DPADD = ${LIBFORMS} ${LIBNCURSES} ${LIBL}
|
|
|
|
.include <bsd.prog.mk>
|