opnsense-src/lib/libforms/examples/Makefile
Paul Richards 0d18307afc The start of a forms editor library. Currently implements text and
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.
1994-11-13 06:45:44 +00:00

7 lines
143 B
Makefile

PROG = tform
CFLAGS = -Wall -I. -I${.CURDIR}
LDADD = -lforms -lncurses -ll
DPADD = ${LIBFORMS} ${LIBNCURSES} ${LIBL}
.include <bsd.prog.mk>