]> gcc.gnu.org Git - gcc.git/blame - libiberty/Makefile.in
Makefile.in (stupid.o): Update dependencies.
[gcc.git] / libiberty / Makefile.in
CommitLineData
6599da04
JM
1#
2# Makefile
3affd5f0
JL
3# Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 1998
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@
6599da04
JM
67
68# A configuration can specify extra .o files that should be included,
69# even if they are in libc. (Perhaps the libc version is buggy.)
70EXTRA_OFILES =
71
72# Flags to pass to a recursive make.
73FLAGS_TO_PASS = \
74 "AR=$(AR)" \
75 "AR_FLAGS=$(AR_FLAGS)" \
76 "CC=$(CC)" \
77 "CFLAGS=$(CFLAGS)" \
78 "LIBCFLAGS=$(LIBCFLAGS)" \
79 "EXTRA_OFILES=$(EXTRA_OFILES)" \
80 "HDEFINES=$(HDEFINES)" \
81 "INSTALL=$(INSTALL)" \
82 "INSTALL_DATA=$(INSTALL_DATA)" \
83 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
84 "LDFLAGS=$(LDFLAGS)" \
85 "LOADLIBES=$(LOADLIBES)" \
6599da04
JM
86 "RANLIB=$(RANLIB)" \
87 "SHELL=$(SHELL)"
88
3affd5f0
JL
89all: stamp-picdir $(TARGETLIB) needed-list required-list
90 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
6599da04
JM
91
92.PHONY: check installcheck
93check installcheck:
94
3affd5f0 95@host_makefile_frag@
6599da04
JM
96
97INCDIR=$(srcdir)/$(MULTISRCTOP)../include
98
3affd5f0 99COMPILE.c = $(CC) -c @DEFS@ $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES)
6599da04 100.c.o:
f5c3ae66 101 test x"$(enable_shared)" != xyes || \
6599da04
JM
102 $(COMPILE.c) $(PICFLAG) $< -o pic/$@
103 $(COMPILE.c) $<
104
6599da04
JM
105info install-info clean-info dvi:
106
107# Include files that are in this directory.
3affd5f0 108HFILES = alloca-conf.h
6599da04
JM
109
110# NOTE: If you add new files to the library, add them to this list
3affd5f0
JL
111# (alphabetical), and add them to REQUIRED_OFILES or funcs in
112# configure.in.
113CFILES = asprintf.c alloca.c argv.c atexit.c basename.c bcmp.c bcopy.c \
114 bzero.c choose-temp.c clock.c concat.c cplus-dem.c fdmatch.c \
115 fnmatch.c getcwd.c getopt.c getopt1.c getpagesize.c \
116 getruntime.c floatformat.c hex.c index.c insque.c memchr.c \
16ba4214 117 memcmp.c memcpy.c memmove.c memset.c mkstemp.c objalloc.c obstack.c \
3affd5f0
JL
118 pexecute.c random.c rename.c rindex.c sigsetmask.c spaces.c \
119 strcasecmp.c strncasecmp.c strchr.c strdup.c strerror.c \
120 strrchr.c strsignal.c strstr.c strtod.c strtol.c strtoul.c \
121 tmpnam.c vasprintf.c vfork.c vfprintf.c vprintf.c vsprintf.c \
122 waitpid.c xatexit.c xexit.c xmalloc.c xstrdup.c xstrerror.c
123
6599da04 124# These are always included in the library.
3affd5f0 125REQUIRED_OFILES = argv.o choose-temp.o concat.o cplus-dem.o \
6599da04 126 fdmatch.o fnmatch.o getopt.o getopt1.o getruntime.o hex.o \
16ba4214 127 floatformat.o mkstemp.o objalloc.o obstack.o pexecute.o spaces.o strerror.o \
6599da04
JM
128 strsignal.o xatexit.o xexit.o xmalloc.o xstrdup.o xstrerror.o
129
3affd5f0
JL
130$(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
131 rm -f $(TARGETLIB)
132 $(AR) $(AR_FLAGS) $(TARGETLIB) \
133 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
134 $(RANLIB) $(TARGETLIB)
6599da04 135
3affd5f0 136INSTALL_DEST = @INSTALL_DEST@
6599da04
JM
137install: install_to_$(INSTALL_DEST)
138
139install_to_libdir: all
c6b50f10
JW
140 $(INSTALL_DATA) $(TARGETLIB) $(libdir)$(MULTISUBDIR)/$(TARGETLIB).n
141 ( cd $(libdir)$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB).n )
142 mv -f $(libdir)$(MULTISUBDIR)/$(TARGETLIB).n $(libdir)$(MULTISUBDIR)/$(TARGETLIB)
6599da04
JM
143 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
144
145install_to_tooldir: all
c6b50f10
JW
146 $(INSTALL_DATA) $(TARGETLIB) $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB).n
147 ( cd $(tooldir)/lib$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB).n )
148 mv -f $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB).n $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)
6599da04
JM
149 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
150
3affd5f0
JL
151# needed-list is used by libstdc++.
152needed-list: Makefile
153 f="$(LIBOBJS) $(EXTRA_OFILES)"; \
6599da04 154 case $$f in \
3affd5f0
JL
155 *alloca.o*) f="$$f xmalloc.o xexit.o" ;; \
156 esac; \
157 echo $$f > needed-list
158
159# required-list was used when building a shared bfd/opcodes/libiberty
160# library. I don't know if it used by anything currently.
6599da04
JM
161required-list: Makefile
162 echo $(REQUIRED_OFILES) > required-list
163
6599da04 164stamp-picdir:
f5c3ae66 165 if [ x"$(enable_shared)" = xyes ] && [ ! -d pic ]; then \
6599da04
JM
166 mkdir pic; \
167 else true; fi
168 touch stamp-picdir
169
3affd5f0 170.PHONY: all etags tags ls clean stage1 stage2
6599da04
JM
171
172etags tags: TAGS
173
174TAGS: $(CFILES) $(HFILES)
175 etags `for i in $(HFILES) $(CFILES); do echo $(srcdir)/$$i ; done`
176
177# The standalone demangler (c++filt) has been moved to binutils.
178demangle:
179 @echo "The standalone demangler, now named c++filt, is now"
180 @echo "a part of binutils."
181 @false
182
183ls:
184 @echo Makefile $(HFILES) $(CFILES)
185
186# Need to deal with profiled libraries, too.
187
188mostlyclean:
189 rm -rf *.o pic core errs \#* *.E a.out
190 rm -f needed.awk needed2.awk errors dummy needed-list config.h stamp-*
191 rm -f $(CONFIG_H) $(NEEDED_LIST) stamp-picdir
192 @$(MULTICLEAN) multi-clean DO=mostlyclean
193clean: mostlyclean
194 rm -f *.a required-list tmpmulti.out
195 @$(MULTICLEAN) multi-clean DO=clean
196distclean: clean
6599da04 197 @$(MULTICLEAN) multi-clean DO=distclean
10c62dce 198 rm -f *~ Makefile config.status xhost-mkfrag TAGS multilib.out
6599da04
JM
199maintainer-clean realclean: distclean
200
201force:
202
3affd5f0
JL
203Makefile: $(srcdir)/Makefile.in config.status
204 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
205
206config.h: stamp-h ; @true
207stamp-h: config.in config.status
208 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
209
210config.status: $(srcdir)/configure $(srcdir)/config.table
211 $(SHELL) ./config.status --recheck
6599da04 212
7b195f77
MS
213$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS): stamp-picdir
214
3affd5f0
JL
215alloca.o: config.h
216atexit.o: config.h
217argv.o: config.h alloca-conf.h $(INCDIR)/libiberty.h
6599da04 218basename.o: $(INCDIR)/libiberty.h
3affd5f0
JL
219choose-temp.o: config.h
220clock.o: config.h
6599da04
JM
221concat.o: $(INCDIR)/libiberty.h
222cplus-dem.o: $(INCDIR)/demangle.h
223fdmatch.o: $(INCDIR)/libiberty.h
3affd5f0
JL
224fnmatch.o: config.h $(INCDIR)/fnmatch.h
225getcwd.o: config.h
226getopt.o: config.h $(INCDIR)/getopt.h
227getopt1.o: config.h $(INCDIR)/getopt.h
228getpagesize.o: config.h
229getruntime.o: config.h $(INCDIR)/libiberty.h
6599da04
JM
230hex.o: $(INCDIR)/libiberty.h
231floatformat.o: $(INCDIR)/floatformat.h
16ba4214 232mkstemp.o: config.h
6599da04
JM
233objalloc.o: $(INCDIR)/objalloc.h
234obstack.o: $(INCDIR)/obstack.h
3affd5f0 235pexecute.o: config.h $(INCDIR)/libiberty.h
6599da04 236spaces.o: $(INCDIR)/libiberty.h
3affd5f0
JL
237strerror.o: config.h $(INCDIR)/libiberty.h
238strsignal.o: config.h $(INCDIR)/libiberty.h
6599da04
JM
239xatexit.o: $(INCDIR)/libiberty.h
240xexit.o: $(INCDIR)/libiberty.h
241xmalloc.o: $(INCDIR)/libiberty.h
242xstrdup.o: $(INCDIR)/libiberty.h
3affd5f0 243xstrerror.o: config.h $(INCDIR)/libiberty.h
This page took 0.106011 seconds and 5 git commands to generate.