* defaults.h (TARGET_ALLOWS_PROFILING_WITHOUT_FRAME_POINTER): New
[official-gcc.git] / libiberty / Makefile.in
blob16a040c7f89f09a07ea0cdb71235902020ab45ff
2 # Makefile
3 # Copyright (C) 1990, 91-99, 2000
4 # Free Software Foundation
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.
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.
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.
23 # This file was written by K. Richard Pixley <rich@cygnus.com>.
26 # Makefile for libiberty directory
29 srcdir = @srcdir@
30 VPATH = @srcdir@
32 prefix = @prefix@
34 exec_prefix = @exec_prefix@
35 bindir = @bindir@
36 libdir = @libdir@
38 SHELL = @SHELL@
40 # Multilib support variables.
41 MULTISRCTOP =
42 MULTIBUILDTOP =
43 MULTIDIRS =
44 MULTISUBDIR =
45 MULTIDO = true
46 MULTICLEAN = true
48 INSTALL = @INSTALL@
49 INSTALL_PROGRAM = @INSTALL_PROGRAM@
50 INSTALL_DATA = @INSTALL_DATA@
52 AR = @AR@
53 AR_FLAGS = rc
55 CC = @CC@
56 CFLAGS = @CFLAGS@
57 LIBCFLAGS = $(CFLAGS)
58 RANLIB = @RANLIB@
60 PICFLAG =
62 MAKEOVERRIDES =
64 TARGETLIB = libiberty.a
66 LIBOBJS = @LIBOBJS@
67 ALLOCA = @ALLOCA@
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.)
71 EXTRA_OFILES =
73 # Flags to pass to a recursive make.
74 FLAGS_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)" \
87 "RANLIB=$(RANLIB)" \
88 "SHELL=$(SHELL)" \
89 "prefix=$(prefix)" \
90 "exec_prefix=$(exec_prefix)" \
91 "libdir=$(libdir)" \
92 "libsubdir=$(libsubdir)" \
93 "tooldir=$(tooldir)"
95 # Subdirectories to recurse into. We need to override this during cleaning
96 SUBDIRS = testsuite
98 all: stamp-picdir $(TARGETLIB) needed-list required-list all-subdir
99 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
101 .PHONY: check installcheck
102 check: check-subdir
103 installcheck: installcheck-subdir
105 @host_makefile_frag@
107 INCDIR=$(srcdir)/$(MULTISRCTOP)../include
109 COMPILE.c = $(CC) -c @DEFS@ $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES) @ac_libiberty_warn_cflags@
110 .c.o:
111 if [ x"$(PICFLAG)" != x ]; then \
112 $(COMPILE.c) $(PICFLAG) $< -o pic/$@; \
113 else true; fi
114 $(COMPILE.c) $<
116 info: info-subdir
117 install-info: install-info-subdir
118 clean-info: clean-info-subdir
119 dvi: dvi-subdir
121 # Include files that are in this directory.
122 HFILES = alloca-conf.h
124 # NOTE: If you add new files to the library, add them to this list
125 # (alphabetical), and add them to REQUIRED_OFILES or funcs in
126 # configure.in.
127 CFILES = asprintf.c alloca.c argv.c atexit.c basename.c bcmp.c bcopy.c \
128 bzero.c calloc.c choose-temp.c clock.c concat.c cplus-dem.c \
129 cp-demangle.c dyn-string.c fdmatch.c fnmatch.c getcwd.c \
130 getpwd.c getopt.c getopt1.c getpagesize.c getruntime.c \
131 floatformat.c hashtab.c hex.c index.c insque.c lbasename.c \
132 md5.c memchr.c \
133 memcmp.c memcpy.c memmove.c memset.c mkstemps.c objalloc.c obstack.c \
134 partition.c pexecute.c putenv.c random.c rename.c rindex.c setenv.c \
135 sigsetmask.c safe-ctype.c sort.c spaces.c splay-tree.c strcasecmp.c \
136 strncasecmp.c strchr.c strdup.c strerror.c strncmp.c strrchr.c \
137 strsignal.c strstr.c strtod.c strtol.c strtoul.c tmpnam.c vasprintf.c \
138 vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c xatexit.c xexit.c \
139 xmalloc.c xmemdup.c xstrdup.c xstrerror.c
141 # These are always included in the library.
142 REQUIRED_OFILES = argv.o choose-temp.o concat.o cplus-dem.o cp-demangle.o \
143 dyn-string.o fdmatch.o fnmatch.o getopt.o getopt1.o getpwd.o \
144 getruntime.o hashtab.o hex.o floatformat.o lbasename.o md5.o \
145 objalloc.o obstack.o \
146 partition.o pexecute.o safe-ctype.o sort.o spaces.o splay-tree.o \
147 strerror.o strsignal.o xatexit.o xexit.o xmalloc.o xmemdup.o \
148 xstrdup.o xstrerror.o
150 $(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA)
151 -rm -f $(TARGETLIB)
152 $(AR) $(AR_FLAGS) $(TARGETLIB) \
153 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA)
154 $(RANLIB) $(TARGETLIB)
156 INSTALL_DEST = @INSTALL_DEST@
157 install: install_to_$(INSTALL_DEST) install-subdir
159 install_to_libdir: all
160 $(INSTALL_DATA) $(TARGETLIB) $(libdir)$(MULTISUBDIR)/$(TARGETLIB)n
161 ( cd $(libdir)$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB)n )
162 mv -f $(libdir)$(MULTISUBDIR)/$(TARGETLIB)n $(libdir)$(MULTISUBDIR)/$(TARGETLIB)
163 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
165 install_to_tooldir: all
166 $(INSTALL_DATA) $(TARGETLIB) $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)n
167 ( cd $(tooldir)/lib$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB)n )
168 mv -f $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)n $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)
169 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
171 # needed-list is used by libstdc++. NEEDED is the list of functions
172 # to include there. Do not add anything LGPL to this list; libstdc++
173 # can't use anything encumbering.
174 NEEDED = atexit calloc memchr memcmp memcpy memmove memset rename strchr \
175 strerror strncmp strrchr strstr strtol strtoul tmpnam vfprintf vprintf \
176 vfork waitpid bcmp bcopy bzero
177 needed-list: Makefile
178 rm -f needed-list; touch needed-list; \
179 for f in $(NEEDED); do \
180 for g in $(LIBOBJS) $(EXTRA_OFILES); do \
181 case "$$g" in \
182 *$$f*) echo $$g >> needed-list ;; \
183 esac; \
184 done; \
185 done
187 # required-list was used when building a shared bfd/opcodes/libiberty
188 # library. I don't know if it used by anything currently.
189 required-list: Makefile
190 echo $(REQUIRED_OFILES) > required-list
192 stamp-picdir:
193 if [ x"$(PICFLAG)" != x ] && [ ! -d pic ]; then \
194 mkdir pic; \
195 else true; fi
196 touch stamp-picdir
198 .PHONY: all etags tags ls clean stage1 stage2
200 etags tags: TAGS etags-subdir
202 TAGS: $(CFILES) $(HFILES)
203 etags `for i in $(HFILES) $(CFILES); do echo $(srcdir)/$$i ; done`
205 # The standalone demangler (c++filt) has been moved to binutils.
206 demangle:
207 @echo "The standalone demangler, now named c++filt, is now"
208 @echo "a part of binutils."
209 @false
212 @echo Makefile $(HFILES) $(CFILES)
214 # Need to deal with profiled libraries, too.
216 # Cleaning has to be done carefully to ensure that we don't clean our SUBDIRS
217 # multiple times, hence our explicit recursion with an empty SUBDIRS.
218 mostlyclean: mostlyclean-subdir
219 -rm -rf *.o pic core errs \#* *.E a.out
220 -rm -f needed.awk needed2.awk errors dummy needed-list config.h stamp-*
221 -rm -f $(CONFIG_H) $(NEEDED_LIST) stamp-picdir
222 @$(MULTICLEAN) multi-clean DO=mostlyclean
223 clean: clean-subdir
224 $(MAKE) SUBDIRS="" mostlyclean
225 -rm -f *.a required-list tmpmulti.out
226 @$(MULTICLEAN) multi-clean DO=clean
227 distclean: distclean-subdir
228 $(MAKE) SUBDIRS="" clean
229 @$(MULTICLEAN) multi-clean DO=distclean
230 -rm -f *~ Makefile config.status xhost-mkfrag TAGS multilib.out
231 -rm -f config.log
232 -rmdir testsuite 2>/dev/null
233 maintainer-clean realclean: maintainer-clean-subdir
234 $(MAKE) SUBDIRS="" distclean
236 force:
238 Makefile: $(srcdir)/Makefile.in config.status
239 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
241 config.h: stamp-h ; @true
242 stamp-h: config.in config.status
243 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
245 config.status: $(srcdir)/configure $(srcdir)/config.table
246 $(SHELL) ./config.status --recheck
249 all-subdir check-subdir installcheck-subdir info-subdir \
250 install-info-subdir clean-info-subdir dvi-subdir install-subdir \
251 etags-subdir mostlyclean-subdir clean-subdir distclean-subdir \
252 maintainer-clean-subdir:
253 @subdirs='$(SUBDIRS)'; \
254 target=`echo $@ | sed -e 's/-subdir//'`; \
255 for dir in $$subdirs ; do \
256 cd $$dir && $(MAKE) $$target; \
257 done
259 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA): stamp-picdir
261 alloca.o: config.h
262 atexit.o: config.h
263 argv.o: config.h alloca-conf.h $(INCDIR)/libiberty.h
264 basename.o: $(INCDIR)/libiberty.h
265 choose-temp.o: config.h
266 clock.o: config.h
267 concat.o: $(INCDIR)/libiberty.h
268 cplus-dem.o: config.h $(INCDIR)/demangle.h
269 cp-demangle.o: config.h $(INCDIR)/dyn-string.h $(INCDIR)/demangle.h
270 dyn-string.o: config.h $(INCDIR)/dyn-string.h
271 fdmatch.o: $(INCDIR)/libiberty.h
272 fnmatch.o: config.h $(INCDIR)/fnmatch.h
273 getcwd.o: config.h
274 getopt.o: config.h $(INCDIR)/getopt.h
275 getopt1.o: config.h $(INCDIR)/getopt.h
276 getpagesize.o: config.h
277 getpwd.o: config.h $(INCDIR)/libiberty.h
278 getruntime.o: config.h $(INCDIR)/libiberty.h
279 hex.o: $(INCDIR)/libiberty.h
280 floatformat.o: $(INCDIR)/floatformat.h
281 lbasename.o: $(INCDIR)/libiberty.h
282 mkstemps.o: config.h
283 md5.o: config.h
284 objalloc.o: config.h $(INCDIR)/objalloc.h
285 obstack.o: config.h $(INCDIR)/obstack.h
286 partition.o: config.h $(INCDIR)/partition.h
287 pexecute.o: config.h $(INCDIR)/libiberty.h
288 rename.o: config.h
289 setenv.o: config.h
290 sort.o: config.h $(INCDIR)/sort.h $(INCDIR)/ansidecl.h
291 spaces.o: $(INCDIR)/libiberty.h
292 splay-tree.o: config.h $(INCDIR)/libiberty.h $(INCDIR)/splay-tree.h $(INCDIR)/ansidecl.h
293 strerror.o: config.h $(INCDIR)/libiberty.h
294 strsignal.o: config.h $(INCDIR)/libiberty.h
295 strtol.o: config.h
296 strtoul.o: config.h
297 vasprintf.o: config.h
298 xatexit.o: $(INCDIR)/libiberty.h
299 xexit.o: config.h $(INCDIR)/libiberty.h
300 xmalloc.o: config.h $(INCDIR)/libiberty.h
301 xmemdup.o: config.h $(INCDIR)/libiberty.h
302 xstrdup.o: config.h $(INCDIR)/libiberty.h
303 xstrerror.o: config.h $(INCDIR)/libiberty.h
304 waitpid.o: config.h
305 hashtab.o: config.h $(INCDIR)/libiberty.h $(INCDIR)/hashtab.h $(INCDIR)/ansidecl.h