OSDN Git Service

Thu Oct 8 23:42:08 1998 Jeffrey A Law (law@cygnus.com)
[pf3gnuchains/gcc-fork.git] / libiberty / Makefile.in
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
29 srcdir = @srcdir@
30 VPATH = @srcdir@
31
32 prefix = @prefix@
33
34 exec_prefix = @exec_prefix@
35 bindir = @bindir@
36 libdir = @libdir@
37
38 SHELL = @SHELL@
39
40 # Multilib support variables.
41 MULTISRCTOP =
42 MULTIBUILDTOP =
43 MULTIDIRS =
44 MULTISUBDIR =
45 MULTIDO = true
46 MULTICLEAN = true
47
48 INSTALL = @INSTALL@
49 INSTALL_PROGRAM = @INSTALL_PROGRAM@
50 INSTALL_DATA = @INSTALL_DATA@
51
52 AR = @AR@
53 AR_FLAGS = rc
54
55 CC = @CC@
56 CFLAGS = @CFLAGS@
57 LIBCFLAGS = $(CFLAGS)
58 RANLIB = @RANLIB@
59
60 PICFLAG =
61
62 MAKEOVERRIDES =
63
64 TARGETLIB = libiberty.a
65
66 LIBOBJS = @LIBOBJS@
67 ALLOCA = @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.)
71 EXTRA_OFILES = 
72
73 # Flags to pass to a recursive make.
74 FLAGS_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
90 all: stamp-picdir $(TARGETLIB) needed-list required-list
91         @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
92
93 .PHONY: check installcheck
94 check installcheck:
95
96 @host_makefile_frag@
97
98 INCDIR=$(srcdir)/$(MULTISRCTOP)../include
99
100 COMPILE.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
106 info install-info clean-info dvi:
107
108 # Include files that are in this directory.
109 HFILES = 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.
114 CFILES = 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 mkstemp.c objalloc.c obstack.c \
119         pexecute.c random.c rename.c rindex.c sigsetmask.c spaces.c \
120         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.
126 REQUIRED_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 mkstemp.o objalloc.o obstack.o pexecute.o spaces.o strerror.o \
129   strsignal.o xatexit.o xexit.o xmalloc.o xstrdup.o xstrerror.o
130
131 $(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA)
132         rm -f $(TARGETLIB)
133         $(AR) $(AR_FLAGS) $(TARGETLIB) \
134           $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA)
135         $(RANLIB) $(TARGETLIB)
136
137 INSTALL_DEST = @INSTALL_DEST@
138 install: install_to_$(INSTALL_DEST)
139
140 install_to_libdir: all
141         $(INSTALL_DATA) $(TARGETLIB) $(libdir)$(MULTISUBDIR)/$(TARGETLIB).n
142         ( cd $(libdir)$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB).n )
143         mv -f $(libdir)$(MULTISUBDIR)/$(TARGETLIB).n $(libdir)$(MULTISUBDIR)/$(TARGETLIB)
144         @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
145
146 install_to_tooldir: all
147         $(INSTALL_DATA) $(TARGETLIB) $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB).n
148         ( cd $(tooldir)/lib$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB).n )
149         mv -f $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB).n $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)
150         @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
151
152 # needed-list is used by libstdc++.
153 needed-list: Makefile
154         f="$(LIBOBJS) $(ALLOCA) $(EXTRA_OFILES)"; \
155         case $$f in \
156           *alloca.o*) f="$$f xmalloc.o xexit.o" ;; \
157         esac; \
158         echo $$f > needed-list
159
160 # required-list was used when building a shared bfd/opcodes/libiberty
161 # library.  I don't know if it used by anything currently.
162 required-list: Makefile
163         echo $(REQUIRED_OFILES) > required-list
164
165 stamp-picdir:
166         if [ x"$(enable_shared)" = xyes ] && [ ! -d pic ]; then \
167           mkdir pic; \
168         else true; fi
169         touch stamp-picdir
170
171 .PHONY: all etags tags ls clean stage1 stage2
172
173 etags tags: TAGS
174
175 TAGS: $(CFILES) $(HFILES)
176         etags `for i in $(HFILES) $(CFILES); do echo $(srcdir)/$$i ; done`
177
178 # The standalone demangler (c++filt) has been moved to binutils.
179 demangle:
180         @echo "The standalone demangler, now named c++filt, is now"
181         @echo "a part of binutils."
182         @false
183
184 ls:
185         @echo Makefile $(HFILES) $(CFILES)
186
187 # Need to deal with profiled libraries, too.
188
189 mostlyclean:
190         rm -rf *.o pic core errs \#* *.E a.out
191         rm -f needed.awk needed2.awk errors dummy needed-list config.h stamp-*
192         rm -f $(CONFIG_H) $(NEEDED_LIST) stamp-picdir
193         @$(MULTICLEAN) multi-clean DO=mostlyclean
194 clean: mostlyclean
195         rm -f *.a required-list tmpmulti.out
196         @$(MULTICLEAN) multi-clean DO=clean
197 distclean: clean
198         @$(MULTICLEAN) multi-clean DO=distclean
199         rm -f *~ Makefile config.status xhost-mkfrag TAGS multilib.out
200         rm -f config.log
201 maintainer-clean realclean: distclean
202
203 force:
204
205 Makefile: $(srcdir)/Makefile.in config.status
206         CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
207
208 config.h: stamp-h ; @true
209 stamp-h: config.in config.status
210         CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
211
212 config.status: $(srcdir)/configure $(srcdir)/config.table
213         $(SHELL) ./config.status --recheck
214
215 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA): stamp-picdir
216
217 alloca.o: config.h
218 atexit.o: config.h
219 argv.o: config.h alloca-conf.h $(INCDIR)/libiberty.h
220 basename.o: $(INCDIR)/libiberty.h
221 choose-temp.o: config.h
222 clock.o: config.h
223 concat.o: $(INCDIR)/libiberty.h
224 cplus-dem.o: $(INCDIR)/demangle.h
225 fdmatch.o: $(INCDIR)/libiberty.h
226 fnmatch.o: config.h $(INCDIR)/fnmatch.h
227 getcwd.o: config.h
228 getopt.o: config.h $(INCDIR)/getopt.h
229 getopt1.o: config.h $(INCDIR)/getopt.h
230 getpagesize.o: config.h
231 getruntime.o: config.h $(INCDIR)/libiberty.h
232 hex.o: $(INCDIR)/libiberty.h
233 floatformat.o: $(INCDIR)/floatformat.h
234 mkstemp.o: config.h
235 objalloc.o: $(INCDIR)/objalloc.h
236 obstack.o: $(INCDIR)/obstack.h
237 pexecute.o: config.h $(INCDIR)/libiberty.h
238 spaces.o: $(INCDIR)/libiberty.h
239 strerror.o: config.h $(INCDIR)/libiberty.h
240 strsignal.o: config.h $(INCDIR)/libiberty.h
241 xatexit.o: $(INCDIR)/libiberty.h
242 xexit.o: $(INCDIR)/libiberty.h
243 xmalloc.o: $(INCDIR)/libiberty.h
244 xstrdup.o: $(INCDIR)/libiberty.h
245 xstrerror.o: config.h $(INCDIR)/libiberty.h