netware target support.
[deliverable/binutils-gdb.git] / readline / Makefile.in
... / ...
CommitLineData
1#
2# Makefile
3# Copyright (C) 1990, 1991, 1992 Free Software Foundation
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#
23
24srcdir = .
25
26prefix = /usr/local
27
28exec_prefix = $(prefix)
29bindir = $(exec_prefix)/bin
30libdir = $(exec_prefix)/lib
31
32datadir = $(prefix)/lib
33mandir = $(prefix)/man
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)
52
53AR = ar
54AR_FLAGS = qv
55CFLAGS = -g
56BISON = bison
57MAKEINFO = makeinfo
58RANLIB = ranlib
59
60# Define TYPES as -DVOID_SIGHANDLER if your operating system uses
61# a return type of "void" for signal handlers.
62TYPES = -DVOID_SIGHANDLER
63
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
74DEBUG_FLAGS = $(MINUS_G)
75LDFLAGS = $(DEBUG_FLAGS)
76
77# A good alternative is gcc -traditional.
78#CC = gcc -traditional
79RM = rm
80CP = cp
81
82LOCAL_INCLUDES = -I$(srcdir)/../
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
90DOCUMENTATION = readline.texi inc-read.texi \
91 history.texi inc-hist.texi
92
93SUPPORT = COPYING Makefile $(DOCUMENTATION) ChangeLog
94
95THINGS_TO_TAR = $(SOURCES) $(SUPPORT)
96
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) $<
102
103STAGESTUFF = *.o
104
105all: libreadline.a
106
107check:
108installcheck:
109info:
110dvi:
111
112clean-info: force
113 -rm -f *.info*
114
115history.info: $(srcdir)/history.texi
116 $(MAKEINFO) -o history.info $(srcdir)/history.texi
117
118readline.info: $(srcdir)/readline.texi $(srcdir)/inc-read.texi
119 $(MAKEINFO) -o readline.info $(srcdir)/readline.texi
120
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
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
130
131tilde.o: $(srcdir)/../glob/tilde.c
132 $(CC) -c $(CFLAGS) $(H_CFLAGS) $(DEBUG_FLAGS) $(USG) -I. $(LOCAL_INCLUDES) $(CPPFLAGS) $(READLINE_DEFINES) $(srcdir)/../glob/tilde.c
133
134libtest: libreadline.a libtest.c
135 $(CC) -o libtest $(CFLAGS) $(H_CFLAGS) $(DEBUG_FLAGS) $(USG) -I. $(LOCAL_INCLUDES) $(CPPFLAGS) $(READLINE_DEFINES) -L. libtest.c -lreadline -ltermcap
136
137readline: readline.c history.o keymaps.o funmap.o readline.h chardefs.h vi_mode.o
138 $(CC) $(CFLAGS) $(CPPFLAGS) $(READLINE_DEFINES) \
139 $(LOCAL_INCLUDES) -DTEST -o readline readline.c funmap.o \
140 keymaps.o history.o vi_mode.o -L. -ltermcap
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
148install:
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
152 $(INSTALL_DATA) libreadline.a $(libdir)/libreadline.a
153 $(RANLIB) $(libdir)/libreadline.a
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
161
162install-info: info
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
169
170includes:
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;\
177 fi
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:
183 rm -f $(STAGESTUFF) *.a *.log *.cp *.tp *.vr *.fn
184 rm -f *.aux *.pg *.toc
185
186distclean realclean: clean
187 rm -f Makefile config.status sysdep.h
188
189$(DESTDIR)/libreadline.a: libreadline.a
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
204against=stage2
205
206comparison: force
207 for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
208
209de-stage1: force
210 -(cd stage1 ; mv -f * ..)
211 -rmdir stage1
212
213de-stage2: force
214 -(cd stage2 ; mv -f * ..)
215 -rmdir stage2
216
217de-stage3: force
218 -(cd stage3 ; mv -f * ..)
219 -rmdir stage3
220
221force:
222
223# with the gnu make, this is done automatically.
224
225Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
226 $(SHELL) ./config.status
This page took 0.11387 seconds and 4 git commands to generate.