* config/tc-sparc.c (sparc_ip): Allow assembly of %lo()+%reg.
[deliverable/binutils-gdb.git] / libiberty / Makefile.in
CommitLineData
252b5132
RH
1#
2# Makefile
3# Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 1998
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)" \
88 "SHELL=$(SHELL)"
89
90all: stamp-picdir $(TARGETLIB) needed-list required-list
91 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
92
93.PHONY: check installcheck
94check installcheck:
95
96@host_makefile_frag@
97
98INCDIR=$(srcdir)/$(MULTISRCTOP)../include
99
100COMPILE.c = $(CC) -c @DEFS@ $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES)
101.c.o:
102 test x"$(enable_shared)" != xyes || \
103 $(COMPILE.c) $(PICFLAG) $< -o pic/$@
104 $(COMPILE.c) $<
105
106info install-info clean-info dvi:
107
108# Include files that are in this directory.
109HFILES = alloca-conf.h
110
111# NOTE: If you add new files to the library, add them to this list
112# (alphabetical), and add them to REQUIRED_OFILES or funcs in
113# configure.in.
114CFILES = asprintf.c alloca.c argv.c atexit.c basename.c bcmp.c bcopy.c \
115 bzero.c choose-temp.c clock.c concat.c cplus-dem.c fdmatch.c \
116 fnmatch.c getcwd.c getopt.c getopt1.c getpagesize.c \
117 getruntime.c floatformat.c hex.c index.c insque.c memchr.c \
118 memcmp.c memcpy.c memmove.c memset.c mkstemps.c objalloc.c obstack.c \
119 pexecute.c random.c rename.c rindex.c sigsetmask.c spaces.c \
120 splay-tree.c strcasecmp.c strncasecmp.c strchr.c strdup.c strerror.c \
121 strrchr.c strsignal.c strstr.c strtod.c strtol.c strtoul.c \
122 tmpnam.c vasprintf.c vfork.c vfprintf.c vprintf.c vsprintf.c \
123 waitpid.c xatexit.c xexit.c xmalloc.c xstrdup.c xstrerror.c
124
125# These are always included in the library.
126REQUIRED_OFILES = argv.o choose-temp.o concat.o cplus-dem.o \
127 fdmatch.o fnmatch.o getopt.o getopt1.o getruntime.o hex.o \
128 floatformat.o objalloc.o obstack.o pexecute.o spaces.o \
129 splay-tree.o strerror.o strsignal.o xatexit.o xexit.o xmalloc.o \
130 xstrdup.o xstrerror.o
131
132$(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA)
133 rm -f $(TARGETLIB)
134 $(AR) $(AR_FLAGS) $(TARGETLIB) \
135 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA)
136 $(RANLIB) $(TARGETLIB)
137
138INSTALL_DEST = @INSTALL_DEST@
139install: install_to_$(INSTALL_DEST)
140
141install_to_libdir: all
19c33eeb
ILT
142 $(INSTALL_DATA) $(TARGETLIB) $(libdir)$(MULTISUBDIR)/$(TARGETLIB)n
143 ( cd $(libdir)$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB)n )
144 mv -f $(libdir)$(MULTISUBDIR)/$(TARGETLIB)n $(libdir)$(MULTISUBDIR)/$(TARGETLIB)
252b5132
RH
145 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
146
147install_to_tooldir: all
19c33eeb
ILT
148 $(INSTALL_DATA) $(TARGETLIB) $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)n
149 ( cd $(tooldir)/lib$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB)n )
150 mv -f $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)n $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)
252b5132
RH
151 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
152
153# needed-list is used by libstdc++.
154needed-list: Makefile
155 f="$(LIBOBJS) $(ALLOCA) $(EXTRA_OFILES)"; \
156 case $$f in \
157 *alloca.o*) f="$$f xmalloc.o xexit.o" ;; \
158 esac; \
159 echo $$f > needed-list
160
161# required-list was used when building a shared bfd/opcodes/libiberty
162# library. I don't know if it used by anything currently.
163required-list: Makefile
164 echo $(REQUIRED_OFILES) > required-list
165
166stamp-picdir:
167 if [ x"$(enable_shared)" = xyes ] && [ ! -d pic ]; then \
168 mkdir pic; \
169 else true; fi
170 touch stamp-picdir
171
172.PHONY: all etags tags ls clean stage1 stage2
173
174etags tags: TAGS
175
176TAGS: $(CFILES) $(HFILES)
177 etags `for i in $(HFILES) $(CFILES); do echo $(srcdir)/$$i ; done`
178
179# The standalone demangler (c++filt) has been moved to binutils.
180demangle:
181 @echo "The standalone demangler, now named c++filt, is now"
182 @echo "a part of binutils."
183 @false
184
185ls:
186 @echo Makefile $(HFILES) $(CFILES)
187
188# Need to deal with profiled libraries, too.
189
190mostlyclean:
191 rm -rf *.o pic core errs \#* *.E a.out
192 rm -f needed.awk needed2.awk errors dummy needed-list config.h stamp-*
193 rm -f $(CONFIG_H) $(NEEDED_LIST) stamp-picdir
194 @$(MULTICLEAN) multi-clean DO=mostlyclean
195clean: mostlyclean
196 rm -f *.a required-list tmpmulti.out
197 @$(MULTICLEAN) multi-clean DO=clean
198distclean: clean
199 @$(MULTICLEAN) multi-clean DO=distclean
200 rm -f *~ Makefile config.status xhost-mkfrag TAGS multilib.out
201 rm -f config.log
202maintainer-clean realclean: distclean
203
204force:
205
206Makefile: $(srcdir)/Makefile.in config.status
207 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
208
209config.h: stamp-h ; @true
210stamp-h: config.in config.status
211 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
212
213config.status: $(srcdir)/configure $(srcdir)/config.table
214 $(SHELL) ./config.status --recheck
215
216$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA): stamp-picdir
217
218alloca.o: config.h
219atexit.o: config.h
220argv.o: config.h alloca-conf.h $(INCDIR)/libiberty.h
221basename.o: $(INCDIR)/libiberty.h
222choose-temp.o: config.h
223clock.o: config.h
224concat.o: $(INCDIR)/libiberty.h
225cplus-dem.o: config.h $(INCDIR)/demangle.h
226fdmatch.o: $(INCDIR)/libiberty.h
227fnmatch.o: config.h $(INCDIR)/fnmatch.h
228getcwd.o: config.h
229getopt.o: config.h $(INCDIR)/getopt.h
230getopt1.o: config.h $(INCDIR)/getopt.h
231getpagesize.o: config.h
232getruntime.o: config.h $(INCDIR)/libiberty.h
233hex.o: $(INCDIR)/libiberty.h
234floatformat.o: $(INCDIR)/floatformat.h
235mkstemps.o: config.h
236objalloc.o: $(INCDIR)/objalloc.h
237obstack.o: config.h $(INCDIR)/obstack.h
238pexecute.o: config.h $(INCDIR)/libiberty.h
239spaces.o: $(INCDIR)/libiberty.h
240splay-tree.o: config.h $(INCDIR)/libiberty.h $(INCDIR)/splay-tree.h $(INCDIR)/ansidecl.h
241strerror.o: config.h $(INCDIR)/libiberty.h
242strsignal.o: config.h $(INCDIR)/libiberty.h
243xatexit.o: $(INCDIR)/libiberty.h
244xexit.o: $(INCDIR)/libiberty.h
245xmalloc.o: $(INCDIR)/libiberty.h
246xstrdup.o: config.h $(INCDIR)/libiberty.h
247xstrerror.o: config.h $(INCDIR)/libiberty.h
This page took 0.038216 seconds and 4 git commands to generate.