freebsd-dev/lib/libforms/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

14 lines
302 B
Makefile

LIB = forms
SRCS = forms.c yacc.c lex.c
CLEANFILES += y.tab.h lex.c yacc.c
CFLAGS = -I. -I${.CURDIR}
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>