mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-17 16:10:46 +01:00
0d18307afc
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.
14 lines
302 B
Makefile
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>
|