]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - readline/Makefile.in
* main.c (show_commands): Make return type of extern
[thirdparty/binutils-gdb.git] / readline / Makefile.in
CommitLineData
92bb90af
RP
1#
2# Makefile
b65a4fe5 3# Copyright (C) 1990, 1991, 1992 Free Software Foundation
92bb90af
RP
4#
5# This file is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
18#
19
20#
21# Makefile for readline and history libraries.
22#
bcb14db5 23
7da15eff 24srcdir = .
7187e60c 25
92bb90af
RP
26prefix = /usr/local
27
b65a4fe5
JK
28exec_prefix = $(prefix)
29bindir = $(exec_prefix)/bin
30libdir = $(exec_prefix)/lib
31
92bb90af 32datadir = $(prefix)/lib
b65a4fe5 33mandir = $(prefix)/man
92bb90af
RP
34man1dir = $(mandir)/man1
35man2dir = $(mandir)/man2
36man3dir = $(mandir)/man3
37man4dir = $(mandir)/man4
38man5dir = $(mandir)/man5
39man6dir = $(mandir)/man6
40man7dir = $(mandir)/man7
41man8dir = $(mandir)/man8
42man9dir = $(mandir)/man9
43infodir = $(prefix)/info
44includedir = $(prefix)/include
45docdir = $(datadir)/doc
46
47SHELL = /bin/sh
48
49INSTALL = install -c
50INSTALL_PROGRAM = $(INSTALL)
51INSTALL_DATA = $(INSTALL)
7da15eff 52
92bb90af
RP
53AR = ar
54AR_FLAGS = qv
b65a4fe5 55CFLAGS = -g
92bb90af
RP
56BISON = bison
57MAKEINFO = makeinfo
58RANLIB = ranlib
59
bd5635a1
RP
60# Define TYPES as -DVOID_SIGHANDLER if your operating system uses
61# a return type of "void" for signal handlers.
62TYPES = -DVOID_SIGHANDLER
63
bd5635a1
RP
64# HP-UX compilation requires the BSD library.
65#LOCAL_LIBS = -lBSD
66
67# Xenix compilation requires -ldir -lx
68#LOCAL_LIBS = -ldir -lx
69
70# Comment out "-DVI_MODE" if you don't think that anyone will ever desire
71# the vi line editing mode and features.
72READLINE_DEFINES = $(TYPES) -DVI_MODE
73
c21b1b26 74DEBUG_FLAGS = $(MINUS_G)
bd5635a1 75LDFLAGS = $(DEBUG_FLAGS)
bd5635a1
RP
76
77# A good alternative is gcc -traditional.
78#CC = gcc -traditional
bd5635a1
RP
79RM = rm
80CP = cp
81
7da15eff 82LOCAL_INCLUDES = -I$(srcdir)/../
bd5635a1
RP
83
84CSOURCES = readline.c history.c funmap.c keymaps.c vi_mode.c \
85 emacs_keymap.c vi_keymap.c
86
87HSOURCES = readline.h chardefs.h history.h keymaps.h
88SOURCES = $(CSOURCES) $(HSOURCES)
89
fff3e61f
RP
90DOCUMENTATION = readline.texi inc-read.texi \
91 history.texi inc-hist.texi
bd5635a1
RP
92
93SUPPORT = COPYING Makefile $(DOCUMENTATION) ChangeLog
94
95THINGS_TO_TAR = $(SOURCES) $(SUPPORT)
96
b65a4fe5
JK
97#### Host, target, and site specific Makefile fragments come in here.
98###
99
100.c.o:
101 $(CC) -c $(CFLAGS) $(H_CFLAGS) $(DEBUG_FLAGS) $(USG) -I. $(LOCAL_INCLUDES) $(CPPFLAGS) $(READLINE_DEFINES) $<
bd5635a1 102
502ef32a 103STAGESTUFF = *.o
7da15eff 104
e92ee469
RP
105all: libreadline.a
106
b65a4fe5
JK
107check:
108installcheck:
92bb90af 109info:
b65a4fe5 110dvi:
92bb90af
RP
111
112clean-info: force
113 -rm -f *.info*
fff3e61f 114
b65a4fe5 115history.info: $(srcdir)/history.texi
c5bbc6ea 116 $(MAKEINFO) -o history.info $(srcdir)/history.texi
fff3e61f 117
b65a4fe5 118readline.info: $(srcdir)/readline.texi $(srcdir)/inc-read.texi
c5bbc6ea 119 $(MAKEINFO) -o readline.info $(srcdir)/readline.texi
bd5635a1 120
02e20edf
JG
121libreadline.a: readline.o history.o funmap.o keymaps.o tilde.o vi_mode.o
122 $(RM) -f libreadline.a
123 $(AR) $(AR_FLAGS) libreadline.a readline.o history.o funmap.o keymaps.o tilde.o vi_mode.o
124 $(RANLIB) libreadline.a
bd5635a1
RP
125
126readline.o: readline.h chardefs.h keymaps.h history.h readline.c vi_mode.c
127history.o: history.c history.h
128funmap.o: readline.h
129keymaps.o: emacs_keymap.c vi_keymap.c keymaps.h chardefs.h keymaps.c
02e20edf
JG
130
131tilde.o: $(srcdir)/../glob/tilde.c
b65a4fe5 132 $(CC) -c $(CFLAGS) $(H_CFLAGS) $(DEBUG_FLAGS) $(USG) -I. $(LOCAL_INCLUDES) $(CPPFLAGS) $(READLINE_DEFINES) $(srcdir)/../glob/tilde.c
bd5635a1
RP
133
134libtest: libreadline.a libtest.c
b65a4fe5 135 $(CC) -o libtest $(CFLAGS) $(H_CFLAGS) $(DEBUG_FLAGS) $(USG) -I. $(LOCAL_INCLUDES) $(CPPFLAGS) $(READLINE_DEFINES) -L. libtest.c -lreadline -ltermcap
bd5635a1 136
494ea0b2 137readline: readline.c history.o keymaps.o funmap.o readline.h chardefs.h vi_mode.o
bd5635a1
RP
138 $(CC) $(CFLAGS) $(CPPFLAGS) $(READLINE_DEFINES) \
139 $(LOCAL_INCLUDES) -DTEST -o readline readline.c funmap.o \
494ea0b2 140 keymaps.o history.o vi_mode.o -L. -ltermcap
bd5635a1
RP
141
142readline.tar: $(THINGS_TO_TAR)
143 tar -cf readline.tar $(THINGS_TO_TAR)
144
145readline.tar.Z: readline.tar
146 compress -f readline.tar
147
92bb90af 148install:
b65a4fe5
JK
149 -parent=`echo $(libdir)|sed -e 's@/[^/]*$$@@'`; \
150 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
151 -if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; fi
92bb90af
RP
152 $(INSTALL_DATA) libreadline.a $(libdir)/libreadline.a
153 $(RANLIB) $(libdir)/libreadline.a
b65a4fe5
JK
154 -parent=`echo $(includedir)|sed -e 's@/[^/]*$$@@'`; \
155 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
156 -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; fi
157 -if [ -d $(includedir)/readline ] ; then true ; else mkdir $(includedir)/readline ; fi
158 $(INSTALL_DATA) $(srcdir)/readline.h $(includedir)/readline/readline.h
159 $(INSTALL_DATA) $(srcdir)/keymaps.h $(includedir)/readline/keymaps.h
160 $(INSTALL_DATA) $(srcdir)/chardefs.h $(includedir)/readline/chardefs.h
e92ee469 161
92bb90af 162install-info: info
b65a4fe5
JK
163# -parent=`echo $(infodir)|sed -e 's@/[^/]*$$@@'`; \
164# if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
165# -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
166# for i in *.info* ; do \
167# $(INSTALL_DATA) $$i $(infodir)/$$i ; \
168# done
bd5635a1
RP
169
170includes:
b65a4fe5
JK
171 -parent=`echo $(includedir)|sed -e 's@/[^/]*$$@@'`; \
172 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
173 -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; fi
174 -if [ ! -r $(includedir)/readline ]; then\
175 mkdir $(includedir)/readline;\
176 chmod a+r $(includedir)/readline;\
bd5635a1 177 fi
b65a4fe5
JK
178 $(INSTALL_FILE) $(srcdir)/readline.h $(includedir)/readline/readline.h
179 $(INSTALL_FILE) $(srcdir)/keymaps.h $(includedir)/readline/keymaps.h
180 $(INSTALL_FILE) $(srcdir)/chardefs.h $(includedir)/readline/chardefs.h
181
182clean mostlyclean:
fff3e61f 183 rm -f $(STAGESTUFF) *.a *.log *.cp *.tp *.vr *.fn
92bb90af 184 rm -f *.aux *.pg *.toc
bd5635a1 185
b65a4fe5
JK
186distclean realclean: clean
187 rm -f Makefile config.status sysdep.h
188
bd5635a1 189$(DESTDIR)/libreadline.a: libreadline.a
7da15eff
RP
190
191# Copy the object files from a particular stage into a subdirectory.
192stage1: force
193 -mkdir stage1
194 -mv $(STAGESTUFF) stage1
195
196stage2: force
197 -mkdir stage2
198 -mv $(STAGESTUFF) stage2
199
200stage3: force
201 -mkdir stage3
202 -mv $(STAGESTUFF) stage3
203
30ba1dfe
RP
204against=stage2
205
206comparison: force
207 for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
208
7da15eff 209de-stage1: force
92bb90af
RP
210 -(cd stage1 ; mv -f * ..)
211 -rmdir stage1
7da15eff
RP
212
213de-stage2: force
92bb90af
RP
214 -(cd stage2 ; mv -f * ..)
215 -rmdir stage2
7da15eff
RP
216
217de-stage3: force
92bb90af
RP
218 -(cd stage3 ; mv -f * ..)
219 -rmdir stage3
7da15eff
RP
220
221force:
222
223# with the gnu make, this is done automatically.
224
c21b1b26 225Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
bcb14db5 226 $(SHELL) ./config.status