(bfd_close_all_done): Mask file perms with 0777 not 0x777.
[deliverable/binutils-gdb.git] / libiberty / Makefile.in
CommitLineData
252b5132
RH
1#
2# Makefile
0c0a36a4 3# Copyright (C) 1990, 91 - 99, 2000
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@
59
60PICFLAG =
61
62MAKEOVERRIDES =
63
64TARGETLIB = libiberty.a
65
66LIBOBJS = @LIBOBJS@
67ALLOCA = @ALLOCA@
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)" \
87 "RANLIB=$(RANLIB)" \
0c0a36a4
ILT
88 "SHELL=$(SHELL)" \
89 "prefix=$(prefix)" \
90 "exec_prefix=$(exec_prefix)" \
91 "libdir=$(libdir)" \
92 "libsubdir=$(libsubdir)" \
93 "tooldir=$(tooldir)"
252b5132 94
0c0a36a4
ILT
95# Subdirectories to recurse into. We need to override this during cleaning
96SUBDIRS = testsuite
97
98all: stamp-picdir $(TARGETLIB) needed-list required-list all-subdir
252b5132
RH
99 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
100
101.PHONY: check installcheck
0c0a36a4
ILT
102check: check-subdir
103installcheck: installcheck-subdir
252b5132
RH
104
105@host_makefile_frag@
106
107INCDIR=$(srcdir)/$(MULTISRCTOP)../include
108
0c0a36a4 109COMPILE.c = $(CC) -c @DEFS@ $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES) @ac_libiberty_warn_cflags@
252b5132
RH
110.c.o:
111 test x"$(enable_shared)" != xyes || \
112 $(COMPILE.c) $(PICFLAG) $< -o pic/$@
113 $(COMPILE.c) $<
114
0c0a36a4
ILT
115info: info-subdir
116install-info: install-info-subdir
117clean-info: clean-info-subdir
118dvi: dvi-subdir
252b5132
RH
119
120# Include files that are in this directory.
121HFILES = alloca-conf.h
122
123# NOTE: If you add new files to the library, add them to this list
124# (alphabetical), and add them to REQUIRED_OFILES or funcs in
125# configure.in.
b4fe2683 126CFILES = asprintf.c alloca.c argv.c atexit.c basename.c bcmp.c bcopy.c \
0c0a36a4 127 bzero.c calloc.c choose-temp.c clock.c concat.c cplus-dem.c fdmatch.c \
b4fe2683
JM
128 fnmatch.c getcwd.c getpwd.c getopt.c getopt1.c getpagesize.c \
129 getruntime.c floatformat.c hashtab.c hex.c index.c insque.c memchr.c \
130 memcmp.c memcpy.c memmove.c memset.c mkstemps.c objalloc.c obstack.c \
131 partition.c pexecute.c putenv.c random.c rename.c rindex.c \
132 setenv.c sigsetmask.c spaces.c splay-tree.c strcasecmp.c \
133 strncasecmp.c strchr.c strdup.c strerror.c strrchr.c \
134 strsignal.c strstr.c strtod.c strtol.c strtoul.c tmpnam.c \
135 vasprintf.c vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c \
136 xatexit.c xexit.c xmalloc.c xmemdup.c xstrdup.c xstrerror.c
252b5132
RH
137
138# These are always included in the library.
139REQUIRED_OFILES = argv.o choose-temp.o concat.o cplus-dem.o \
0c0a36a4 140 fdmatch.o fnmatch.o getopt.o getopt1.o getpwd.o getruntime.o hashtab.o \
b4fe2683 141 hex.o floatformat.o objalloc.o obstack.o partition.o pexecute.o spaces.o \
252b5132 142 splay-tree.o strerror.o strsignal.o xatexit.o xexit.o xmalloc.o \
0c0a36a4 143 xmemdup.o xstrdup.o xstrerror.o
252b5132
RH
144
145$(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA)
146 rm -f $(TARGETLIB)
147 $(AR) $(AR_FLAGS) $(TARGETLIB) \
148 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA)
149 $(RANLIB) $(TARGETLIB)
150
151INSTALL_DEST = @INSTALL_DEST@
0c0a36a4 152install: install_to_$(INSTALL_DEST) install-subdir
252b5132
RH
153
154install_to_libdir: all
19c33eeb
ILT
155 $(INSTALL_DATA) $(TARGETLIB) $(libdir)$(MULTISUBDIR)/$(TARGETLIB)n
156 ( cd $(libdir)$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB)n )
157 mv -f $(libdir)$(MULTISUBDIR)/$(TARGETLIB)n $(libdir)$(MULTISUBDIR)/$(TARGETLIB)
252b5132
RH
158 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
159
160install_to_tooldir: all
19c33eeb
ILT
161 $(INSTALL_DATA) $(TARGETLIB) $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)n
162 ( cd $(tooldir)/lib$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB)n )
163 mv -f $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)n $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)
252b5132
RH
164 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
165
0c0a36a4
ILT
166# needed-list is used by libstdc++. NEEDED is the list of functions
167# to include there. Do not add anything LGPL to this list; libstdc++
168# can't use anything encumbering.
169NEEDED = atexit calloc memchr memcmp memcpy memmove memset rename strchr \
170 strerror strrchr strstr strtol strtoul tmpnam vfprintf vprintf \
171 vfork waitpid bcmp bcopy bzero
252b5132 172needed-list: Makefile
0c0a36a4
ILT
173 rm -f needed-list; touch needed-list; \
174 for f in $(NEEDED); do \
175 for g in $(LIBOBJS) $(EXTRA_OFILES); do \
176 case "$$g" in \
177 *$$f*) echo $$g >> needed-list ;; \
178 esac; \
179 done; \
180 done
252b5132
RH
181
182# required-list was used when building a shared bfd/opcodes/libiberty
183# library. I don't know if it used by anything currently.
184required-list: Makefile
185 echo $(REQUIRED_OFILES) > required-list
186
187stamp-picdir:
188 if [ x"$(enable_shared)" = xyes ] && [ ! -d pic ]; then \
189 mkdir pic; \
190 else true; fi
191 touch stamp-picdir
192
193.PHONY: all etags tags ls clean stage1 stage2
194
0c0a36a4 195etags tags: TAGS etags-subdir
252b5132
RH
196
197TAGS: $(CFILES) $(HFILES)
198 etags `for i in $(HFILES) $(CFILES); do echo $(srcdir)/$$i ; done`
199
200# The standalone demangler (c++filt) has been moved to binutils.
201demangle:
202 @echo "The standalone demangler, now named c++filt, is now"
203 @echo "a part of binutils."
204 @false
205
206ls:
207 @echo Makefile $(HFILES) $(CFILES)
208
209# Need to deal with profiled libraries, too.
210
0c0a36a4
ILT
211# Cleaning has to be done carefully to ensure that we don't clean our SUBDIRS
212# multiple times, hence our explicit recursion with an empty SUBDIRS.
213mostlyclean: mostlyclean-subdir
252b5132
RH
214 rm -rf *.o pic core errs \#* *.E a.out
215 rm -f needed.awk needed2.awk errors dummy needed-list config.h stamp-*
216 rm -f $(CONFIG_H) $(NEEDED_LIST) stamp-picdir
217 @$(MULTICLEAN) multi-clean DO=mostlyclean
0c0a36a4
ILT
218clean: clean-subdir
219 $(MAKE) SUBDIRS="" mostlyclean
252b5132
RH
220 rm -f *.a required-list tmpmulti.out
221 @$(MULTICLEAN) multi-clean DO=clean
0c0a36a4
ILT
222distclean: distclean-subdir
223 $(MAKE) SUBDIRS="" clean
252b5132
RH
224 @$(MULTICLEAN) multi-clean DO=distclean
225 rm -f *~ Makefile config.status xhost-mkfrag TAGS multilib.out
226 rm -f config.log
0c0a36a4
ILT
227maintainer-clean realclean: maintainer-clean-subdir
228 $(MAKE) SUBDIRS="" distclean
252b5132
RH
229
230force:
231
232Makefile: $(srcdir)/Makefile.in config.status
233 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
234
235config.h: stamp-h ; @true
236stamp-h: config.in config.status
237 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
238
239config.status: $(srcdir)/configure $(srcdir)/config.table
240 $(SHELL) ./config.status --recheck
241
0c0a36a4
ILT
242
243all-subdir check-subdir installcheck-subdir info-subdir \
244install-info-subdir clean-info-subdir dvi-subdir install-subdir \
245etags-subdir mostlyclean-subdir clean-subdir distclean-subdir \
246maintainer-clean-subdir:
19be4303
JL
247 @if test "x$(SUBDIRS)" = x; then exit 0; fi; \
248 target=`echo $@ | sed -e 's/-subdir//'`; \
249 for dir in $(SUBDIRS) ; do \
250 cd $$dir && $(MAKE) $$target; \
0c0a36a4
ILT
251 done
252
252b5132
RH
253$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA): stamp-picdir
254
255alloca.o: config.h
256atexit.o: config.h
257argv.o: config.h alloca-conf.h $(INCDIR)/libiberty.h
258basename.o: $(INCDIR)/libiberty.h
259choose-temp.o: config.h
260clock.o: config.h
261concat.o: $(INCDIR)/libiberty.h
262cplus-dem.o: config.h $(INCDIR)/demangle.h
263fdmatch.o: $(INCDIR)/libiberty.h
264fnmatch.o: config.h $(INCDIR)/fnmatch.h
265getcwd.o: config.h
266getopt.o: config.h $(INCDIR)/getopt.h
267getopt1.o: config.h $(INCDIR)/getopt.h
268getpagesize.o: config.h
0c0a36a4 269getpwd.o: config.h $(INCDIR)/libiberty.h
252b5132
RH
270getruntime.o: config.h $(INCDIR)/libiberty.h
271hex.o: $(INCDIR)/libiberty.h
272floatformat.o: $(INCDIR)/floatformat.h
273mkstemps.o: config.h
274objalloc.o: $(INCDIR)/objalloc.h
275obstack.o: config.h $(INCDIR)/obstack.h
b4fe2683 276partition.o: config.h $(INCDIR)/partition.h
252b5132 277pexecute.o: config.h $(INCDIR)/libiberty.h
0c0a36a4 278setenv.o: config.h
252b5132
RH
279spaces.o: $(INCDIR)/libiberty.h
280splay-tree.o: config.h $(INCDIR)/libiberty.h $(INCDIR)/splay-tree.h $(INCDIR)/ansidecl.h
281strerror.o: config.h $(INCDIR)/libiberty.h
282strsignal.o: config.h $(INCDIR)/libiberty.h
283xatexit.o: $(INCDIR)/libiberty.h
284xexit.o: $(INCDIR)/libiberty.h
285xmalloc.o: $(INCDIR)/libiberty.h
0c0a36a4 286xmemdup.o: config.h $(INCDIR)/libiberty.h
252b5132
RH
287xstrdup.o: config.h $(INCDIR)/libiberty.h
288xstrerror.o: config.h $(INCDIR)/libiberty.h
0c0a36a4 289hashtab.o: config.h $(INCDIR)/libiberty.h $(INCDIR)/hashtab.h $(INCDIR)/ansidecl.h
This page took 0.055264 seconds and 4 git commands to generate.