0305d2ddc1
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.
22 lines
296 B
Makefile
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>
|