]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - libiberty/Makefile.in
*** empty log message ***
[thirdparty/binutils-gdb.git] / libiberty / Makefile.in
CommitLineData
252b5132
RH
1#
2# Makefile
39423523 3# Copyright (C) 1990, 91-99, 2000, 2001
252b5132
RH
4# Free Software Foundation
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
23# This file was written by K. Richard Pixley <rich@cygnus.com>.
24
25#
26# Makefile for libiberty directory
27#
28
29srcdir = @srcdir@
30VPATH = @srcdir@
31
32prefix = @prefix@
33
34exec_prefix = @exec_prefix@
35bindir = @bindir@
36libdir = @libdir@
37
38SHELL = @SHELL@
39
40# Multilib support variables.
41MULTISRCTOP =
42MULTIBUILDTOP =
43MULTIDIRS =
44MULTISUBDIR =
45MULTIDO = true
46MULTICLEAN = true
47
48INSTALL = @INSTALL@
49INSTALL_PROGRAM = @INSTALL_PROGRAM@
50INSTALL_DATA = @INSTALL_DATA@
51
52AR = @AR@
53AR_FLAGS = rc
54
55CC = @CC@
56CFLAGS = @CFLAGS@
57LIBCFLAGS = $(CFLAGS)
58RANLIB = @RANLIB@
39423523
DD
59MAKEINFO = @MAKEINFO@
60PERL = @PERL@
252b5132
RH
61
62PICFLAG =
63
64MAKEOVERRIDES =
65
66TARGETLIB = libiberty.a
67
68LIBOBJS = @LIBOBJS@
252b5132
RH
69
70# A configuration can specify extra .o files that should be included,
71# even if they are in libc. (Perhaps the libc version is buggy.)
72EXTRA_OFILES =
73
74# Flags to pass to a recursive make.
75FLAGS_TO_PASS = \
76 "AR=$(AR)" \
77 "AR_FLAGS=$(AR_FLAGS)" \
78 "CC=$(CC)" \
79 "CFLAGS=$(CFLAGS)" \
80 "LIBCFLAGS=$(LIBCFLAGS)" \
81 "EXTRA_OFILES=$(EXTRA_OFILES)" \
82 "HDEFINES=$(HDEFINES)" \
83 "INSTALL=$(INSTALL)" \
84 "INSTALL_DATA=$(INSTALL_DATA)" \
85 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
86 "LDFLAGS=$(LDFLAGS)" \
87 "LOADLIBES=$(LOADLIBES)" \
88 "RANLIB=$(RANLIB)" \
0c0a36a4
ILT
89 "SHELL=$(SHELL)" \
90 "prefix=$(prefix)" \
91 "exec_prefix=$(exec_prefix)" \
92 "libdir=$(libdir)" \
93 "libsubdir=$(libsubdir)" \
94 "tooldir=$(tooldir)"
252b5132 95
0c0a36a4
ILT
96# Subdirectories to recurse into. We need to override this during cleaning
97SUBDIRS = testsuite
98
39423523 99# FIXME: add @BUILD_INFO@ once we're sure it works for everyone.
0c0a36a4 100all: stamp-picdir $(TARGETLIB) needed-list required-list all-subdir
252b5132
RH
101 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
102
103.PHONY: check installcheck
0c0a36a4
ILT
104check: check-subdir
105installcheck: installcheck-subdir
252b5132
RH
106
107@host_makefile_frag@
108
109INCDIR=$(srcdir)/$(MULTISRCTOP)../include
110
eb383413 111COMPILE.c = $(CC) -c @DEFS@ $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES) @ac_libiberty_warn_cflags@
252b5132 112.c.o:
eb383413
L
113 if [ x"$(PICFLAG)" != x ]; then \
114 $(COMPILE.c) $(PICFLAG) $< -o pic/$@; \
115 else true; fi
252b5132
RH
116 $(COMPILE.c) $<
117
252b5132
RH
118# NOTE: If you add new files to the library, add them to this list
119# (alphabetical), and add them to REQUIRED_OFILES or funcs in
120# configure.in.
b4fe2683 121CFILES = asprintf.c alloca.c argv.c atexit.c basename.c bcmp.c bcopy.c \
39423523 122 bsearch.c bzero.c calloc.c choose-temp.c clock.c concat.c cplus-dem.c \
7b78baae 123 cp-demangle.c dyn-string.c fdmatch.c fnmatch.c ffs.c getcwd.c \
eb383413 124 getpwd.c getopt.c getopt1.c getpagesize.c getruntime.c \
8aa30e60 125 floatformat.c hashtab.c hex.c index.c insque.c lbasename.c \
1dffcc66 126 md5.c make-temp-file.c memchr.c \
ac424eb3 127 memcmp.c memcpy.c memmove.c memset.c mkstemps.c objalloc.c obstack.c \
2a6ef469
DD
128 partition.c pexecute.c putenv.c random.c \
129 regex.c rename.c rindex.c setenv.c \
ac424eb3
DD
130 sigsetmask.c safe-ctype.c sort.c spaces.c splay-tree.c strcasecmp.c \
131 strncasecmp.c strchr.c strdup.c strerror.c strncmp.c strrchr.c \
0279cc64
DD
132 strsignal.c strstr.c strtod.c strtol.c strtoul.c tmpnam.c vasprintf.c \
133 vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c xatexit.c xexit.c \
8e777d6a 134 xmalloc.c xmemdup.c xstrdup.c xstrerror.c ternary.c fibheap.c
252b5132
RH
135
136# These are always included in the library.
8aa30e60
DD
137REQUIRED_OFILES = argv.o alloca.o choose-temp.o concat.o cplus-dem.o \
138 cp-demangle.o dyn-string.o fdmatch.o fnmatch.o getopt.o getopt1.o \
139 getpwd.o getruntime.o hashtab.o hex.o floatformat.o lbasename.o \
1dffcc66 140 md5.o make-temp-file.o objalloc.o \
2a6ef469 141 obstack.o partition.o pexecute.o regex.o safe-ctype.o sort.o spaces.o \
8aa30e60 142 splay-tree.o strerror.o strsignal.o xatexit.o xexit.o xmalloc.o \
8e777d6a 143 xmemdup.o xstrdup.o xstrerror.o ternary.o fibheap.o
30673bf5 144
39423523
DD
145# These are all the objects that configure may add to the library via
146# $funcs. This list exists here only for "make maint-missing".
147CONFIGURED_OFILES = asprintf.o atexit.o basename.o bcmp.o bcopy.o \
148 bsearch.o bzero.o calloc.o clock.o ffs.o getcwd.o \
149 getpagesize.o index.o insque.o memchr.o memcmp.o memcpy.o \
150 memmove.o memset.o mkstemps.o putenv.o random.o rename.o \
151 rindex.o setenv.o sigsetmask.o strcasecmp.o strchr.o strdup.o \
152 strncasecmp.o strncmp.o strrchr.o strstr.o strtod.o strtol.o \
153 strtoul.o tmpnam.o vasprintf.o vfork.o vfprintf.o vprintf.o \
154 vsprintf.o waitpid.o
155
30673bf5 156$(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
c00c39ed 157 -rm -f $(TARGETLIB)
252b5132 158 $(AR) $(AR_FLAGS) $(TARGETLIB) \
30673bf5 159 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
252b5132
RH
160 $(RANLIB) $(TARGETLIB)
161
39423523
DD
162info: libiberty.info info-subdir
163install-info: install-info-subdir
164clean-info: clean-info-subdir
165dvi: libiberty.dvi dvi-subdir
166html: libiberty.html
167
168TEXISRC = \
169 $(srcdir)/libiberty.texi \
170 $(srcdir)/copying-lib.texi \
171 $(srcdir)/obstacks.texi \
172 $(srcdir)/functions.texi
173
174# Additional files that have texi snippets that need to be collected
ba19b94f
DD
175# and sorted. Some are here because the sources are imported from
176# elsewhere. Others represent headers in ../include.
177TEXIFILES = fnmatch.txh
39423523
DD
178
179libiberty.info : $(srcdir)/libiberty.texi $(TEXISRC)
180 $(MAKEINFO) -I$(srcdir) $(srcdir)/libiberty.texi
181
182libiberty.dvi : $(srcdir)/libiberty.texi $(TEXISRC)
183 texi2dvi $(srcdir)/libiberty.texi
184
185libiberty.html : $(srcdir)/libiberty.texi $(TEXISRC)
186 $(MAKEINFO) --html -I$(srcdir) $(srcdir)/libiberty.texi
187
188@MAINT@$(srcdir)/functions.texi : stamp-functions
189@MAINT@ @true
190
191@MAINT@stamp-functions : $(CFILES) $(TEXIFILES) $(srcdir)/gather-docs Makefile
192@MAINT@@HAVE_PERL@ $(PERL) $(srcdir)/gather-docs $(srcdir) $(srcdir)/functions.texi $(CFILES) $(TEXIFILES)
193@MAINT@ echo stamp > stamp-functions
194
252b5132 195INSTALL_DEST = @INSTALL_DEST@
0c0a36a4 196install: install_to_$(INSTALL_DEST) install-subdir
252b5132
RH
197
198install_to_libdir: all
19c33eeb
ILT
199 $(INSTALL_DATA) $(TARGETLIB) $(libdir)$(MULTISUBDIR)/$(TARGETLIB)n
200 ( cd $(libdir)$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB)n )
201 mv -f $(libdir)$(MULTISUBDIR)/$(TARGETLIB)n $(libdir)$(MULTISUBDIR)/$(TARGETLIB)
252b5132
RH
202 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
203
204install_to_tooldir: all
19c33eeb
ILT
205 $(INSTALL_DATA) $(TARGETLIB) $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)n
206 ( cd $(tooldir)/lib$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB)n )
207 mv -f $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)n $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)
252b5132
RH
208 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
209
0c0a36a4
ILT
210# needed-list is used by libstdc++. NEEDED is the list of functions
211# to include there. Do not add anything LGPL to this list; libstdc++
212# can't use anything encumbering.
213NEEDED = atexit calloc memchr memcmp memcpy memmove memset rename strchr \
eb383413 214 strerror strncmp strrchr strstr strtol strtoul tmpnam vfprintf vprintf \
0c0a36a4 215 vfork waitpid bcmp bcopy bzero
252b5132 216needed-list: Makefile
0c0a36a4
ILT
217 rm -f needed-list; touch needed-list; \
218 for f in $(NEEDED); do \
219 for g in $(LIBOBJS) $(EXTRA_OFILES); do \
220 case "$$g" in \
221 *$$f*) echo $$g >> needed-list ;; \
222 esac; \
223 done; \
224 done
252b5132
RH
225
226# required-list was used when building a shared bfd/opcodes/libiberty
227# library. I don't know if it used by anything currently.
228required-list: Makefile
229 echo $(REQUIRED_OFILES) > required-list
230
231stamp-picdir:
eb383413 232 if [ x"$(PICFLAG)" != x ] && [ ! -d pic ]; then \
252b5132
RH
233 mkdir pic; \
234 else true; fi
235 touch stamp-picdir
236
237.PHONY: all etags tags ls clean stage1 stage2
238
0c0a36a4 239etags tags: TAGS etags-subdir
252b5132 240
30673bf5
DD
241TAGS: $(CFILES)
242 etags `for i in $(CFILES); do echo $(srcdir)/$$i ; done`
252b5132
RH
243
244# The standalone demangler (c++filt) has been moved to binutils.
245demangle:
246 @echo "The standalone demangler, now named c++filt, is now"
247 @echo "a part of binutils."
248 @false
249
250ls:
30673bf5 251 @echo Makefile $(CFILES)
252b5132 252
39423523
DD
253# Various targets for maintainers.
254
255maint-missing :
256 @$(PERL) $(srcdir)/maint-tool -s $(srcdir) missing $(CFILES) $(REQUIRED_OFILES) $(CONFIGURED_OFILES)
257
258maint-buildall : $(REQUIRED_OFILES) $(CONFIGURED_OFILES)
259 @true
260
ba19b94f
DD
261maint-undoc : $(srcdir)/functions.texi
262 @$(PERL) $(srcdir)/maint-tool -s $(srcdir) undoc
263
252b5132
RH
264# Need to deal with profiled libraries, too.
265
0c0a36a4
ILT
266# Cleaning has to be done carefully to ensure that we don't clean our SUBDIRS
267# multiple times, hence our explicit recursion with an empty SUBDIRS.
268mostlyclean: mostlyclean-subdir
c00c39ed
DD
269 -rm -rf *.o pic core errs \#* *.E a.out
270 -rm -f needed.awk needed2.awk errors dummy needed-list config.h stamp-*
271 -rm -f $(CONFIG_H) $(NEEDED_LIST) stamp-picdir
39423523
DD
272 -rm -f libiberty.aux libiberty.cp libiberty.cps libiberty.fn libiberty.ky
273 -rm -f libiberty.log libiberty.tmp libiberty.tps libiberty.pg
274 -rm -f libiberty.pgs libiberty.toc libiberty.tp libiberty.tpl libiberty.vr
275 -rm -f libtexi.stamp
252b5132 276 @$(MULTICLEAN) multi-clean DO=mostlyclean
0c0a36a4
ILT
277clean: clean-subdir
278 $(MAKE) SUBDIRS="" mostlyclean
c00c39ed 279 -rm -f *.a required-list tmpmulti.out
39423523 280 -rm -f libiberty.dvi libiberty.info* libiberty.html
252b5132 281 @$(MULTICLEAN) multi-clean DO=clean
0c0a36a4
ILT
282distclean: distclean-subdir
283 $(MAKE) SUBDIRS="" clean
252b5132 284 @$(MULTICLEAN) multi-clean DO=distclean
c00c39ed
DD
285 -rm -f *~ Makefile config.status xhost-mkfrag TAGS multilib.out
286 -rm -f config.log
4415a860 287 -rmdir testsuite 2>/dev/null
0c0a36a4
ILT
288maintainer-clean realclean: maintainer-clean-subdir
289 $(MAKE) SUBDIRS="" distclean
252b5132
RH
290
291force:
292
293Makefile: $(srcdir)/Makefile.in config.status
294 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
295
296config.h: stamp-h ; @true
297stamp-h: config.in config.status
298 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
299
300config.status: $(srcdir)/configure $(srcdir)/config.table
301 $(SHELL) ./config.status --recheck
302
0c0a36a4
ILT
303all-subdir check-subdir installcheck-subdir info-subdir \
304install-info-subdir clean-info-subdir dvi-subdir install-subdir \
305etags-subdir mostlyclean-subdir clean-subdir distclean-subdir \
306maintainer-clean-subdir:
010c70e1 307 @subdirs='$(SUBDIRS)'; \
19be4303 308 target=`echo $@ | sed -e 's/-subdir//'`; \
010c70e1 309 for dir in $$subdirs ; do \
19be4303 310 cd $$dir && $(MAKE) $$target; \
0c0a36a4
ILT
311 done
312
30673bf5 313$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS): stamp-picdir
252b5132 314
30673bf5 315alloca.o: config.h $(INCDIR)/libiberty.h
252b5132 316atexit.o: config.h
30673bf5 317argv.o: config.h $(INCDIR)/libiberty.h
252b5132
RH
318basename.o: $(INCDIR)/libiberty.h
319choose-temp.o: config.h
320clock.o: config.h
cc5144f8 321concat.o: config.h $(INCDIR)/libiberty.h
252b5132 322cplus-dem.o: config.h $(INCDIR)/demangle.h
eb383413
L
323cp-demangle.o: config.h $(INCDIR)/dyn-string.h $(INCDIR)/demangle.h
324dyn-string.o: config.h $(INCDIR)/dyn-string.h
252b5132 325fdmatch.o: $(INCDIR)/libiberty.h
f01b59ed 326fibheap.o: config.h $(INCDIR)/libiberty.h $(INCDIR)/fibheap.h
252b5132
RH
327fnmatch.o: config.h $(INCDIR)/fnmatch.h
328getcwd.o: config.h
329getopt.o: config.h $(INCDIR)/getopt.h
330getopt1.o: config.h $(INCDIR)/getopt.h
331getpagesize.o: config.h
0c0a36a4 332getpwd.o: config.h $(INCDIR)/libiberty.h
252b5132
RH
333getruntime.o: config.h $(INCDIR)/libiberty.h
334hex.o: $(INCDIR)/libiberty.h
335floatformat.o: $(INCDIR)/floatformat.h
8aa30e60 336lbasename.o: $(INCDIR)/libiberty.h
a7bf099b 337make-temp-file.o: config.h
252b5132 338mkstemps.o: config.h
74bcd529 339md5.o: config.h
77bfb694 340objalloc.o: config.h $(INCDIR)/objalloc.h
252b5132 341obstack.o: config.h $(INCDIR)/obstack.h
b4fe2683 342partition.o: config.h $(INCDIR)/partition.h
252b5132 343pexecute.o: config.h $(INCDIR)/libiberty.h
a5d8f731 344regex.o: config.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
90aaccd1 345rename.o: config.h
0c0a36a4 346setenv.o: config.h
eb383413 347sort.o: config.h $(INCDIR)/sort.h $(INCDIR)/ansidecl.h
252b5132
RH
348spaces.o: $(INCDIR)/libiberty.h
349splay-tree.o: config.h $(INCDIR)/libiberty.h $(INCDIR)/splay-tree.h $(INCDIR)/ansidecl.h
350strerror.o: config.h $(INCDIR)/libiberty.h
351strsignal.o: config.h $(INCDIR)/libiberty.h
62df2065
JL
352strtol.o: config.h
353strtoul.o: config.h
a5dd804e 354ternary.o: config.h $(INCDIR)/ternary.h $(INCDIR)/libiberty.h
74bcd529 355vasprintf.o: config.h
252b5132 356xatexit.o: $(INCDIR)/libiberty.h
74bcd529 357xexit.o: config.h $(INCDIR)/libiberty.h
eb383413 358xmalloc.o: config.h $(INCDIR)/libiberty.h
0c0a36a4 359xmemdup.o: config.h $(INCDIR)/libiberty.h
252b5132
RH
360xstrdup.o: config.h $(INCDIR)/libiberty.h
361xstrerror.o: config.h $(INCDIR)/libiberty.h
90aaccd1 362waitpid.o: config.h
0c0a36a4 363hashtab.o: config.h $(INCDIR)/libiberty.h $(INCDIR)/hashtab.h $(INCDIR)/ansidecl.h