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
34 exec_prefix = @
exec_prefix@
40 # Multilib support variables.
49 INSTALL_PROGRAM
= @INSTALL_PROGRAM@
50 INSTALL_DATA
= @INSTALL_DATA@
64 TARGETLIB
= libiberty.a
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.)
72 # Flags to pass to a recursive make.
75 "AR_FLAGS=$(AR_FLAGS)" \
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)" \
89 "exec_prefix=$(exec_prefix)" \
91 "libsubdir=$(libsubdir)" \
94 # Subdirectories to recurse into. We need to override this during cleaning
97 all: stamp-picdir
$(TARGETLIB
) needed-list required-list all-subdir
98 @
$(MULTIDO
) $(FLAGS_TO_PASS
) multi-do DO
=all
100 .PHONY
: check installcheck
102 installcheck: installcheck-subdir
106 INCDIR
=$(srcdir)/$(MULTISRCTOP
)..
/include
108 COMPILE.c
= $(CC
) -c @DEFS@
$(LIBCFLAGS
) -I.
-I
$(INCDIR
) $(HDEFINES
) @ac_libiberty_warn_cflags@
110 if
[ x
"$(PICFLAG)" != x
]; then \
111 $(COMPILE.c
) $(PICFLAG
) $< -o pic
/$@
; \
116 install-info
: install-info-subdir
117 clean-info
: clean-info-subdir
120 # NOTE: If you add new files to the library, add them to this list
121 # (alphabetical), and add them to REQUIRED_OFILES or funcs in
123 CFILES
= asprintf.c alloca.c argv.c atexit.c
basename.c bcmp.c bcopy.c \
124 bzero.c calloc.c choose-temp.c clock.c concat.c cplus-dem.c \
125 cp-demangle.c dyn-string.c fdmatch.c fnmatch.c ffs.c getcwd.c \
126 getpwd.c getopt.c getopt1.c getpagesize.c getruntime.c \
127 floatformat.c hashtab.c hex.c index.c insque.c lbasename.c \
128 md5.c make-temp-file.c memchr.c \
129 memcmp.c memcpy.c memmove.c memset.c mkstemps.c objalloc.c obstack.c \
130 partition.c pexecute.c putenv.c random.c \
131 regex.c rename.c rindex.c setenv.c \
132 sigsetmask.c safe-ctype.c
sort.c spaces.c splay-tree.c strcasecmp.c \
133 strncasecmp.c strchr.c strdup.c strerror.c strncmp.c strrchr.c \
134 strsignal.c strstr.c strtod.c strtol.c strtoul.c tmpnam.c vasprintf.c \
135 vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c xatexit.c xexit.c \
136 xmalloc.c xmemdup.c xstrdup.c xstrerror.c ternary.c
138 # These are always included in the library.
139 REQUIRED_OFILES
= argv.o alloca.o choose-temp.o concat.o cplus-dem.o \
140 cp-demangle.o dyn-string.o fdmatch.o fnmatch.o getopt.o getopt1.o \
141 getpwd.o getruntime.o hashtab.o hex.o floatformat.o lbasename.o \
142 md5.o make-temp-file.o objalloc.o \
143 obstack.o partition.o pexecute.o regex.o safe-ctype.o
sort.o spaces.o \
144 splay-tree.o strerror.o strsignal.o xatexit.o xexit.o xmalloc.o \
145 xmemdup.o xstrdup.o xstrerror.o ternary.o
147 $(TARGETLIB
): $(REQUIRED_OFILES
) $(EXTRA_OFILES
) $(LIBOBJS
)
149 $(AR
) $(AR_FLAGS
) $(TARGETLIB
) \
150 $(REQUIRED_OFILES
) $(EXTRA_OFILES
) $(LIBOBJS
)
151 $(RANLIB
) $(TARGETLIB
)
153 INSTALL_DEST
= @INSTALL_DEST@
154 install: install_to_
$(INSTALL_DEST
) install-subdir
156 install_to_libdir
: all
157 $(INSTALL_DATA
) $(TARGETLIB
) $(libdir)$(MULTISUBDIR
)/$(TARGETLIB
)n
158 ( cd
$(libdir)$(MULTISUBDIR
) ; $(RANLIB
) $(TARGETLIB
)n
)
159 mv
-f
$(libdir)$(MULTISUBDIR
)/$(TARGETLIB
)n
$(libdir)$(MULTISUBDIR
)/$(TARGETLIB
)
160 @
$(MULTIDO
) $(FLAGS_TO_PASS
) multi-do DO
=install
162 install_to_tooldir
: all
163 $(INSTALL_DATA
) $(TARGETLIB
) $(tooldir
)/lib
$(MULTISUBDIR
)/$(TARGETLIB
)n
164 ( cd
$(tooldir
)/lib
$(MULTISUBDIR
) ; $(RANLIB
) $(TARGETLIB
)n
)
165 mv
-f
$(tooldir
)/lib
$(MULTISUBDIR
)/$(TARGETLIB
)n
$(tooldir
)/lib
$(MULTISUBDIR
)/$(TARGETLIB
)
166 @
$(MULTIDO
) $(FLAGS_TO_PASS
) multi-do DO
=install
168 # needed-list is used by libstdc++. NEEDED is the list of functions
169 # to include there. Do not add anything LGPL to this list; libstdc++
170 # can't use anything encumbering.
171 NEEDED
= atexit calloc memchr memcmp memcpy memmove memset rename strchr \
172 strerror strncmp strrchr strstr strtol strtoul tmpnam vfprintf vprintf \
173 vfork waitpid bcmp bcopy bzero
174 needed-list
: Makefile
175 rm -f needed-list
; touch needed-list
; \
176 for f in
$(NEEDED
); do \
177 for g in
$(LIBOBJS
) $(EXTRA_OFILES
); do \
179 *$$f*) echo
$$g >> needed-list
;; \
184 # required-list was used when building a shared bfd/opcodes/libiberty
185 # library. I don't know if it used by anything currently.
186 required-list
: Makefile
187 echo
$(REQUIRED_OFILES
) > required-list
190 if
[ x
"$(PICFLAG)" != x
] && [ ! -d pic
]; then \
195 .PHONY
: all etags
tags ls
clean stage1 stage2
197 etags
tags: TAGS etags-subdir
200 etags
`for i in $(CFILES); do echo $(srcdir)/$$i ; done`
202 # The standalone demangler (c++filt) has been moved to binutils.
204 @echo
"The standalone demangler, now named c++filt, is now"
205 @echo
"a part of binutils."
209 @echo Makefile
$(CFILES
)
211 # Need to deal with profiled libraries, too.
213 # Cleaning has to be done carefully to ensure that we don't clean our SUBDIRS
214 # multiple times, hence our explicit recursion with an empty SUBDIRS.
215 mostlyclean: mostlyclean-subdir
216 -rm -rf
*.o pic core errs \
#* *.E a.out
217 -rm -f needed.awk needed2.awk errors dummy needed-list config.h stamp-
*
218 -rm -f
$(CONFIG_H
) $(NEEDED_LIST
) stamp-picdir
219 @
$(MULTICLEAN
) multi-clean DO
=mostlyclean
221 $(MAKE
) SUBDIRS
="" mostlyclean
222 -rm -f
*.a required-list tmpmulti.out
223 @
$(MULTICLEAN
) multi-clean DO
=clean
224 distclean: distclean-subdir
225 $(MAKE
) SUBDIRS
="" clean
226 @
$(MULTICLEAN
) multi-clean DO
=distclean
227 -rm -f
*~ Makefile config.status xhost-mkfrag TAGS multilib.out
229 -rmdir testsuite
2>/dev
/null
230 maintainer-clean
realclean: maintainer-clean-subdir
231 $(MAKE
) SUBDIRS
="" distclean
235 Makefile
: $(srcdir)/Makefile.in config.status
236 CONFIG_FILES
=Makefile CONFIG_HEADERS
= $(SHELL
) .
/config.status
238 config.h
: stamp-h
; @true
239 stamp-h
: config.in config.status
240 CONFIG_FILES
= CONFIG_HEADERS
=config.h
:config.in
$(SHELL
) .
/config.status
242 config.status
: $(srcdir)/configure
$(srcdir)/config.table
243 $(SHELL
) .
/config.status
--recheck
245 all-subdir check-subdir installcheck-subdir info-subdir \
246 install-info-subdir clean-info-subdir dvi-subdir install-subdir \
247 etags-subdir mostlyclean-subdir clean-subdir distclean-subdir \
248 maintainer-clean-subdir
:
249 @subdirs
='$(SUBDIRS)'; \
250 target
=`echo $@ | sed -e 's/-subdir//'`; \
251 for
dir in
$$subdirs ; do \
252 cd
$$dir && $(MAKE
) $$target; \
255 $(REQUIRED_OFILES
) $(EXTRA_OFILES
) $(LIBOBJS
): stamp-picdir
257 alloca.o
: config.h
$(INCDIR
)/libiberty.h
259 argv.o
: config.h
$(INCDIR
)/libiberty.h
260 basename.o
: $(INCDIR
)/libiberty.h
261 choose-temp.o
: config.h
263 concat.o
: $(INCDIR
)/libiberty.h
264 cplus-dem.o
: config.h
$(INCDIR
)/demangle.h
265 cp-demangle.o
: config.h
$(INCDIR
)/dyn-string.h
$(INCDIR
)/demangle.h
266 dyn-string.o
: config.h
$(INCDIR
)/dyn-string.h
267 fdmatch.o
: $(INCDIR
)/libiberty.h
268 fnmatch.o
: config.h
$(INCDIR
)/fnmatch.h
270 getopt.o
: config.h
$(INCDIR
)/getopt.h
271 getopt1.o
: config.h
$(INCDIR
)/getopt.h
272 getpagesize.o
: config.h
273 getpwd.o
: config.h
$(INCDIR
)/libiberty.h
274 getruntime.o
: config.h
$(INCDIR
)/libiberty.h
275 hex.o
: $(INCDIR
)/libiberty.h
276 floatformat.o
: $(INCDIR
)/floatformat.h
277 lbasename.o
: $(INCDIR
)/libiberty.h
278 make-temp-file.o
: config.h
281 objalloc.o
: config.h
$(INCDIR
)/objalloc.h
282 obstack.o
: config.h
$(INCDIR
)/obstack.h
283 partition.o
: config.h
$(INCDIR
)/partition.h
284 pexecute.o
: config.h
$(INCDIR
)/libiberty.h
285 regex.o
: config.h
$(INCDIR
)/xregex.h
$(INCDIR
)/xregex2.h
288 sort.o
: config.h
$(INCDIR
)/sort.h
$(INCDIR
)/ansidecl.h
289 spaces.o
: $(INCDIR
)/libiberty.h
290 splay-tree.o
: config.h
$(INCDIR
)/libiberty.h
$(INCDIR
)/splay-tree.h
$(INCDIR
)/ansidecl.h
291 strerror.o
: config.h
$(INCDIR
)/libiberty.h
292 strsignal.o
: config.h
$(INCDIR
)/libiberty.h
295 ternary.o
: config.h
$(INCDIR
)/ternary.h
$(INCDIR
)/libiberty.h
296 vasprintf.o
: config.h
297 xatexit.o
: $(INCDIR
)/libiberty.h
298 xexit.o
: config.h
$(INCDIR
)/libiberty.h
299 xmalloc.o
: config.h
$(INCDIR
)/libiberty.h
300 xmemdup.o
: config.h
$(INCDIR
)/libiberty.h
301 xstrdup.o
: config.h
$(INCDIR
)/libiberty.h
302 xstrerror.o
: config.h
$(INCDIR
)/libiberty.h
304 hashtab.o
: config.h
$(INCDIR
)/libiberty.h
$(INCDIR
)/hashtab.h
$(INCDIR
)/ansidecl.h