mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-24 01:57:06 +01:00
17 lines
359 B
Makefile
17 lines
359 B
Makefile
# $FreeBSD$
|
|
|
|
SUBDIR = history readline
|
|
|
|
SRCDIR= ${.CURDIR}/../../../contrib/libreadline
|
|
|
|
INSTALLED_HEADERS= readline.h chardefs.h keymaps.h history.h tilde.h \
|
|
rlstdc.h rlconf.h
|
|
|
|
beforeinstall:
|
|
.for i in ${INSTALLED_HEADERS}
|
|
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${SRCDIR}/$i \
|
|
${DESTDIR}/usr/include/readline
|
|
.endfor
|
|
|
|
.include <bsd.prog.mk>
|