mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-23 11:18:54 +00:00
f60854c594
Submitted by: jc@cleat.irbs.com
30 lines
911 B
Makefile
30 lines
911 B
Makefile
# $Id: Makefile,v 1.15 1994/11/01 09:13:02 pst Exp $
|
|
|
|
|
|
CFLAGS+= -I${.CURDIR} -DVOID_SIGHANDLER \
|
|
-DHAVE_UNISTD_H -DHAVE_STRING_H -DHAVE_STDLIB_H -DHAVE_VARARGS_H \
|
|
-DFreeBSD
|
|
|
|
LIB= readline
|
|
SRCS+= readline.c funmap.c keymaps.c vi_mode.c parens.c \
|
|
rltty.c complete.c bind.c isearch.c display.c signals.c \
|
|
history.c search.c tilde.c xmalloc.c
|
|
HEADERS= history.h readline.h keymaps.h chardefs.h tilde.h
|
|
NOMAN= noman
|
|
LDADD+= -ltermcap
|
|
|
|
beforeinstall:
|
|
@-if [ ! -d ${DESTDIR}/usr/include/readline ]; then \
|
|
mkdir ${DESTDIR}/usr/include/readline; \
|
|
chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/readline; \
|
|
chmod 755 ${DESTDIR}/usr/include/readline; \
|
|
fi
|
|
cd ${.CURDIR}/readline; \
|
|
for m in ${HEADERS} ; do \
|
|
cmp -s $$m ${DESTDIR}/usr/include/readline || \
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
$$m ${DESTDIR}/usr/include/readline ; \
|
|
done
|
|
|
|
.include <bsd.lib.mk>
|