62773adf71
Forms now have their own local bindings table so that anything declared within a form is local to that form. This means you can have fields of the same name in different forms. Added inlined attribute setting for strings e.g. "This is \bold bold" Added entry and exit functions for fields.
14 lines
327 B
Makefile
14 lines
327 B
Makefile
LIB = forms
|
|
|
|
SRCS = forms.c parser.y lex.l menu.c fields.c
|
|
|
|
CFLAGS += -I. -I${.CURDIR} -Wall -g -DHASH_STATS
|
|
LDFLAGS += -ll
|
|
|
|
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>
|