]> git.ipfire.org Git - thirdparty/gcc.git/blame - libiberty/Makefile.in
[multiple changes]
[thirdparty/gcc.git] / libiberty / Makefile.in
CommitLineData
6599da04
JM
1#
2# Makefile
7c72138a 3# Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
3affd5f0 4# Free Software Foundation
6599da04
JM
5#
6# This file is part of the libiberty library.
7# Libiberty is free software; you can redistribute it and/or
8# modify it under the terms of the GNU Library General Public
9# License as published by the Free Software Foundation; either
10# version 2 of the License, or (at your option) any later version.
11#
12# Libiberty is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15# Library General Public License for more details.
16#
17# You should have received a copy of the GNU Library General Public
18# License along with libiberty; see the file COPYING.LIB. If not,
19# write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20# Boston, MA 02111-1307, USA.
21#
22
3affd5f0 23# This file was written by K. Richard Pixley <rich@cygnus.com>.
6599da04
JM
24
25#
26# Makefile for libiberty directory
27#
28
3affd5f0
JL
29srcdir = @srcdir@
30VPATH = @srcdir@
6599da04 31
3affd5f0 32prefix = @prefix@
6599da04 33
3affd5f0
JL
34exec_prefix = @exec_prefix@
35bindir = @bindir@
36libdir = @libdir@
6599da04 37
3affd5f0 38SHELL = @SHELL@
6599da04
JM
39
40# Multilib support variables.
41MULTISRCTOP =
42MULTIBUILDTOP =
43MULTIDIRS =
44MULTISUBDIR =
45MULTIDO = true
46MULTICLEAN = true
47
3affd5f0
JL
48INSTALL = @INSTALL@
49INSTALL_PROGRAM = @INSTALL_PROGRAM@
50INSTALL_DATA = @INSTALL_DATA@
6599da04 51
3affd5f0 52AR = @AR@
6599da04
JM
53AR_FLAGS = rc
54
3affd5f0
JL
55CC = @CC@
56CFLAGS = @CFLAGS@
6599da04 57LIBCFLAGS = $(CFLAGS)
3affd5f0 58RANLIB = @RANLIB@
6599da04
JM
59
60PICFLAG =
61
62MAKEOVERRIDES =
63
64TARGETLIB = libiberty.a
65
3affd5f0 66LIBOBJS = @LIBOBJS@
ca6b370d 67ALLOCA = @ALLOCA@
6599da04
JM
68
69# A configuration can specify extra .o files that should be included,
70# even if they are in libc. (Perhaps the libc version is buggy.)
71EXTRA_OFILES =
72
73# Flags to pass to a recursive make.
74FLAGS_TO_PASS = \
75 "AR=$(AR)" \
76 "AR_FLAGS=$(AR_FLAGS)" \
77 "CC=$(CC)" \
78 "CFLAGS=$(CFLAGS)" \
79 "LIBCFLAGS=$(LIBCFLAGS)" \
80 "EXTRA_OFILES=$(EXTRA_OFILES)" \
81 "HDEFINES=$(HDEFINES)" \
82 "INSTALL=$(INSTALL)" \
83 "INSTALL_DATA=$(INSTALL_DATA)" \
84 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
85 "LDFLAGS=$(LDFLAGS)" \
86 "LOADLIBES=$(LOADLIBES)" \
6599da04
JM
87 "RANLIB=$(RANLIB)" \
88 "SHELL=$(SHELL)"
89
7c72138a 90all: stamp-picdir $(TARGETLIB) needed-list required-list all-subdir
3affd5f0 91 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
6599da04
JM
92
93.PHONY: check installcheck
7c72138a
TT
94check: check-subdir
95installcheck: installcheck-subdir
6599da04 96
3affd5f0 97@host_makefile_frag@
6599da04
JM
98
99INCDIR=$(srcdir)/$(MULTISRCTOP)../include
100
3affd5f0 101COMPILE.c = $(CC) -c @DEFS@ $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES)
6599da04 102.c.o:
f5c3ae66 103 test x"$(enable_shared)" != xyes || \
6599da04
JM
104 $(COMPILE.c) $(PICFLAG) $< -o pic/$@
105 $(COMPILE.c) $<
106
7c72138a
TT
107info: info-subdir
108install-info: install-info-subdir
109clean-info: clean-info-subdir
110dvi: dvi-subdir
6599da04
JM
111
112# Include files that are in this directory.
3affd5f0 113HFILES = alloca-conf.h
6599da04
JM
114
115# NOTE: If you add new files to the library, add them to this list
3affd5f0
JL
116# (alphabetical), and add them to REQUIRED_OFILES or funcs in
117# configure.in.
118CFILES = asprintf.c alloca.c argv.c atexit.c basename.c bcmp.c bcopy.c \
119 bzero.c choose-temp.c clock.c concat.c cplus-dem.c fdmatch.c \
120 fnmatch.c getcwd.c getopt.c getopt1.c getpagesize.c \
121 getruntime.c floatformat.c hex.c index.c insque.c memchr.c \
8ec65f13 122 memcmp.c memcpy.c memmove.c memset.c mkstemps.c objalloc.c obstack.c \
9eb4080f
JL
123 pexecute.c putenv.c random.c rename.c rindex.c setenv.c sigsetmask.c \
124 spaces.c splay-tree.c strcasecmp.c strncasecmp.c strchr.c strdup.c \
125 strerror.c strrchr.c strsignal.c strstr.c strtod.c strtol.c strtoul.c \
3affd5f0
JL
126 tmpnam.c vasprintf.c vfork.c vfprintf.c vprintf.c vsprintf.c \
127 waitpid.c xatexit.c xexit.c xmalloc.c xstrdup.c xstrerror.c
128
6599da04 129# These are always included in the library.
3affd5f0 130REQUIRED_OFILES = argv.o choose-temp.o concat.o cplus-dem.o \
6599da04 131 fdmatch.o fnmatch.o getopt.o getopt1.o getruntime.o hex.o \
687361c8 132 floatformat.o objalloc.o obstack.o pexecute.o spaces.o \
ed87f9c8
MM
133 splay-tree.o strerror.o strsignal.o xatexit.o xexit.o xmalloc.o \
134 xstrdup.o xstrerror.o
6599da04 135
ca6b370d 136$(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA)
3affd5f0
JL
137 rm -f $(TARGETLIB)
138 $(AR) $(AR_FLAGS) $(TARGETLIB) \
ca6b370d 139 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA)
3affd5f0 140 $(RANLIB) $(TARGETLIB)
6599da04 141
3affd5f0 142INSTALL_DEST = @INSTALL_DEST@
7c72138a 143install: install_to_$(INSTALL_DEST) install-subdir
6599da04
JM
144
145install_to_libdir: all
c6b50f10
JW
146 $(INSTALL_DATA) $(TARGETLIB) $(libdir)$(MULTISUBDIR)/$(TARGETLIB).n
147 ( cd $(libdir)$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB).n )
148 mv -f $(libdir)$(MULTISUBDIR)/$(TARGETLIB).n $(libdir)$(MULTISUBDIR)/$(TARGETLIB)
6599da04
JM
149 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
150
151install_to_tooldir: all
c6b50f10
JW
152 $(INSTALL_DATA) $(TARGETLIB) $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB).n
153 ( cd $(tooldir)/lib$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB).n )
154 mv -f $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB).n $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)
6599da04
JM
155 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
156
3affd5f0
JL
157# needed-list is used by libstdc++.
158needed-list: Makefile
ca6b370d 159 f="$(LIBOBJS) $(ALLOCA) $(EXTRA_OFILES)"; \
6599da04 160 case $$f in \
3affd5f0
JL
161 *alloca.o*) f="$$f xmalloc.o xexit.o" ;; \
162 esac; \
163 echo $$f > needed-list
164
165# required-list was used when building a shared bfd/opcodes/libiberty
166# library. I don't know if it used by anything currently.
6599da04
JM
167required-list: Makefile
168 echo $(REQUIRED_OFILES) > required-list
169
6599da04 170stamp-picdir:
f5c3ae66 171 if [ x"$(enable_shared)" = xyes ] && [ ! -d pic ]; then \
6599da04
JM
172 mkdir pic; \
173 else true; fi
174 touch stamp-picdir
175
3affd5f0 176.PHONY: all etags tags ls clean stage1 stage2
6599da04 177
7c72138a 178etags tags: TAGS etags-subdir
6599da04
JM
179
180TAGS: $(CFILES) $(HFILES)
181 etags `for i in $(HFILES) $(CFILES); do echo $(srcdir)/$$i ; done`
182
183# The standalone demangler (c++filt) has been moved to binutils.
184demangle:
185 @echo "The standalone demangler, now named c++filt, is now"
186 @echo "a part of binutils."
187 @false
188
189ls:
190 @echo Makefile $(HFILES) $(CFILES)
191
192# Need to deal with profiled libraries, too.
193
7c72138a 194mostlyclean: mostlyclean-subdir
6599da04
JM
195 rm -rf *.o pic core errs \#* *.E a.out
196 rm -f needed.awk needed2.awk errors dummy needed-list config.h stamp-*
197 rm -f $(CONFIG_H) $(NEEDED_LIST) stamp-picdir
198 @$(MULTICLEAN) multi-clean DO=mostlyclean
7c72138a 199clean: mostlyclean clean-subdir
6599da04
JM
200 rm -f *.a required-list tmpmulti.out
201 @$(MULTICLEAN) multi-clean DO=clean
7c72138a 202distclean: clean distclean-subdir
6599da04 203 @$(MULTICLEAN) multi-clean DO=distclean
10c62dce 204 rm -f *~ Makefile config.status xhost-mkfrag TAGS multilib.out
ca6b370d 205 rm -f config.log
7c72138a 206maintainer-clean realclean: distclean maintainer-clean-subdir
6599da04
JM
207
208force:
209
3affd5f0
JL
210Makefile: $(srcdir)/Makefile.in config.status
211 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
212
213config.h: stamp-h ; @true
214stamp-h: config.in config.status
215 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
216
217config.status: $(srcdir)/configure $(srcdir)/config.table
218 $(SHELL) ./config.status --recheck
6599da04 219
7c72138a
TT
220
221all-subdir check-subdir installcheck-subdir info-subdir \
222install-info-subdir clean-info-subdir dvi-subdir install-subdir \
223etags-subdir mostlyclean-subdir clean-subdir distclean-subdir \
224maintainer-clean-subdir:
225 @target=`echo $@ | sed -e 's/-subdir//'`; \
226 cd testsuite && $(MAKE) $$target
227
ca6b370d 228$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA): stamp-picdir
7b195f77 229
3affd5f0
JL
230alloca.o: config.h
231atexit.o: config.h
232argv.o: config.h alloca-conf.h $(INCDIR)/libiberty.h
6599da04 233basename.o: $(INCDIR)/libiberty.h
3affd5f0
JL
234choose-temp.o: config.h
235clock.o: config.h
6599da04 236concat.o: $(INCDIR)/libiberty.h
f77d8413 237cplus-dem.o: config.h $(INCDIR)/demangle.h
6599da04 238fdmatch.o: $(INCDIR)/libiberty.h
3affd5f0
JL
239fnmatch.o: config.h $(INCDIR)/fnmatch.h
240getcwd.o: config.h
241getopt.o: config.h $(INCDIR)/getopt.h
242getopt1.o: config.h $(INCDIR)/getopt.h
243getpagesize.o: config.h
244getruntime.o: config.h $(INCDIR)/libiberty.h
6599da04
JM
245hex.o: $(INCDIR)/libiberty.h
246floatformat.o: $(INCDIR)/floatformat.h
8ec65f13 247mkstemps.o: config.h
6599da04 248objalloc.o: $(INCDIR)/objalloc.h
f77d8413 249obstack.o: config.h $(INCDIR)/obstack.h
3affd5f0 250pexecute.o: config.h $(INCDIR)/libiberty.h
73919448 251setenv.o: config.h
6599da04 252spaces.o: $(INCDIR)/libiberty.h
c85c3232 253splay-tree.o: config.h $(INCDIR)/libiberty.h $(INCDIR)/splay-tree.h $(INCDIR)/ansidecl.h
3affd5f0
JL
254strerror.o: config.h $(INCDIR)/libiberty.h
255strsignal.o: config.h $(INCDIR)/libiberty.h
6599da04
JM
256xatexit.o: $(INCDIR)/libiberty.h
257xexit.o: $(INCDIR)/libiberty.h
258xmalloc.o: $(INCDIR)/libiberty.h
16b4c15e 259xstrdup.o: config.h $(INCDIR)/libiberty.h
3affd5f0 260xstrerror.o: config.h $(INCDIR)/libiberty.h