1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-22 11:17:19 +00:00
freebsd/lib/libforms/Makefile

14 lines
302 B
Makefile
Raw Normal View History

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>