From 7f8bb70cffe0030d4efa99e1c444b8bbbfe6fac6 Mon Sep 17 00:00:00 2001 From: Paul Richards Date: Tue, 10 Jan 1995 04:00:37 +0000 Subject: New forms library. This provides some basic functions for writing input forms. It has the following simple fields: Text fields: Just titles, labels etc. Input fields: An editable text field that may or may not have an initial default value. Labelled input field: This is an input field that has an initial informative entry in it but it vanishes when you start editing the field. Toggle fields: These are fields with a pre-defined list of options which you cycle through using the space bar. Action fields: These are button type fields that call functions when they are selected. A simple demo is included in examples. --- lib/libforms/Makefile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'lib/libforms/Makefile') diff --git a/lib/libforms/Makefile b/lib/libforms/Makefile index 9dae66d6643d..12b06e91dfc8 100644 --- a/lib/libforms/Makefile +++ b/lib/libforms/Makefile @@ -1,13 +1,12 @@ LIB = forms -SRCS = forms.c yacc.c lex.c -CLEANFILES += y.tab.h lex.c yacc.c +SRCS = forms.c -CFLAGS = -I. -I${.CURDIR} +CFLAGS = -I. -I${.CURDIR} -Wall 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;) + install -c -o ${BINOWN} -g ${BINGRP} -m 444 forms.h \ + ${DESTDIR}/usr/include/forms.h;) .include -- cgit v1.3