8c490a36b0
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.
13 lines
268 B
Makefile
13 lines
268 B
Makefile
LIB = forms
|
|
|
|
SRCS = forms.c
|
|
|
|
CFLAGS += -I. -I${.CURDIR} -Wall -g
|
|
|
|
beforeinstall:
|
|
@(cd ${.CURDIR}; cmp -s forms.h ${DESTDIR}/usr/include/forms.h || \
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m 444 forms.h \
|
|
${DESTDIR}/usr/include/forms.h;)
|
|
|
|
.include <bsd.lib.mk>
|