blob: 3e631141ce6c93ebb1208f2b91d89397f4ccc4ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $FreeBSD: src/gnu/lib/libreadline/Makefile,v 1.30.2.3 1999/08/29 14:28:55 peter Exp $
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>
|