mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-17 16:10:46 +01:00
be7d950dc8
than at compile time. Should have same functionality as old libforms but with new mechanism. Lots of new features that use the new mechanism are still to be added.
14 lines
314 B
Makefile
14 lines
314 B
Makefile
LIB = forms
|
|
|
|
SRCS = forms.c parser.y lex.l menu.c fields.c
|
|
|
|
CFLAGS += -I. -I${.CURDIR} -Wall -g
|
|
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>
|