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