paul 0305d2ddc1 Implemented height field for text fields so they can now be more than
one line long.

Fixed a bug in the input field with cursor positioning at the end of
the field.

Make the print_status function available to apps so they can print
status messages.

Updated the example for the new fib parser.
1995-02-01 04:06:37 +00:00

22 lines
296 B
Makefile

PROG = example
NOMAN = yet
SRCS = example.c frm.tab.h
CFLAGS = -g -static
.if exists(${.CURDIR}/../obj)
FORMDIR=${.CURDIR}/../obj
.else
FORMDIR=${.CURDIR}/..
.endif
LDADD = -L${FORMDIR} -lforms -lncurses -lmytinfo
CLEANFILES += frm.tab.h
frm.tab.h:
fib example.frm
.include <bsd.prog.mk>