blob: 14ae396c42f587c4a951a3bc71d5a2f3ae339215 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $OpenBSD: Makefile,v 1.4 2001/03/25 00:47:25 millert Exp $
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 util.c kill.c undo.c macro.c \
input.c callback.c terminal.c xmalloc.c history.c histsearch.c \
histexpand.c histfile.c nls.c search.c shell.c savestring.c tilde.c
HDRS= readline.h chardefs.h keymaps.h history.h tilde.h rlstdc.h rlconf.h
SUBDIR= doc
CPPFLAGS+=-DHAVE_CONFIG_H -I${.CURDIR}
includes:
@cd ${.CURDIR}; for i in $(HDRS); do \
j="cmp -s $$i ${DESTDIR}/usr/include/readline/$$i || \
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \
${DESTDIR}/usr/include/readline"; \
echo $$j; \
eval "$$j"; \
done
.include <bsd.lib.mk>
.include <bsd.subdir.mk>
|