* gcse.c (delete_null_pointer_checks): Fix typo in this change:
[official-gcc.git] / libiberty / Makefile.in
blobf5a18336268275ff6dc543bbb3ccdd7facdb67f3
2 # Makefile
3 # Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
4 # Free Software Foundation
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.
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.
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.
23 # This file was written by K. Richard Pixley <rich@cygnus.com>.
26 # Makefile for libiberty directory
29 srcdir = @srcdir@
30 VPATH = @srcdir@
32 prefix = @prefix@
34 exec_prefix = @exec_prefix@
35 bindir = @bindir@
36 libdir = @libdir@
38 SHELL = @SHELL@
40 # Multilib support variables.
41 MULTISRCTOP =
42 MULTIBUILDTOP =
43 MULTIDIRS =
44 MULTISUBDIR =
45 MULTIDO = true
46 MULTICLEAN = true
48 INSTALL = @INSTALL@
49 INSTALL_PROGRAM = @INSTALL_PROGRAM@
50 INSTALL_DATA = @INSTALL_DATA@
52 AR = @AR@
53 AR_FLAGS = rc
55 CC = @CC@
56 CFLAGS = @CFLAGS@
57 LIBCFLAGS = $(CFLAGS)
58 RANLIB = @RANLIB@
60 PICFLAG =
62 MAKEOVERRIDES =
64 TARGETLIB = libiberty.a
66 LIBOBJS = @LIBOBJS@
67 ALLOCA = @ALLOCA@
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 =
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 "prefix=$(prefix)" \
90 "exec_prefix=$(exec_prefix)" \
91 "libdir=$(libdir)" \
92 "libsubdir=$(libsubdir)" \
93 "tooldir=$(tooldir)"
95 # Subdirectories to recurse into. We need to override this during cleaning
96 SUBDIRS = testsuite
98 all: stamp-picdir $(TARGETLIB) needed-list required-list all-subdir
99 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
101 .PHONY: check installcheck
102 check: check-subdir
103 installcheck: installcheck-subdir
105 @host_makefile_frag@
107 INCDIR=$(srcdir)/$(MULTISRCTOP)../include
109 COMPILE.c = $(CC) -c @DEFS@ $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES)
110 .c.o:
111 test x"$(enable_shared)" != xyes || \
112 $(COMPILE.c) $(PICFLAG) $< -o pic/$@
113 $(COMPILE.c) $<
115 info: info-subdir
116 install-info: install-info-subdir
117 clean-info: clean-info-subdir
118 dvi: dvi-subdir
120 # Include files that are in this directory.
121 HFILES = alloca-conf.h
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.
126 CFILES = asprintf.c alloca.c argv.c atexit.c basename.c bcmp.c bcopy.c \
127 bzero.c calloc.c choose-temp.c clock.c concat.c cplus-dem.c fdmatch.c \
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 pexecute.c putenv.c random.c rename.c rindex.c setenv.c sigsetmask.c \
132 spaces.c splay-tree.c strcasecmp.c strncasecmp.c strchr.c strdup.c \
133 strerror.c strrchr.c strsignal.c strstr.c strtod.c strtol.c strtoul.c \
134 tmpnam.c vasprintf.c vfork.c vfprintf.c vprintf.c vsprintf.c \
135 waitpid.c xatexit.c xexit.c xmalloc.c xmemdup.c xstrdup.c xstrerror.c
137 # These are always included in the library.
138 REQUIRED_OFILES = argv.o choose-temp.o concat.o cplus-dem.o \
139 fdmatch.o fnmatch.o getopt.o getopt1.o getpwd.o getruntime.o hashtab.o \
140 hex.o floatformat.o objalloc.o obstack.o pexecute.o spaces.o \
141 splay-tree.o strerror.o strsignal.o xatexit.o xexit.o xmalloc.o \
142 xmemdup.o xstrdup.o xstrerror.o
144 $(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA)
145 rm -f $(TARGETLIB)
146 $(AR) $(AR_FLAGS) $(TARGETLIB) \
147 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA)
148 $(RANLIB) $(TARGETLIB)
150 INSTALL_DEST = @INSTALL_DEST@
151 install: install_to_$(INSTALL_DEST) install-subdir
153 install_to_libdir: all
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)
157 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
159 install_to_tooldir: all
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)
163 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
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.
168 NEEDED = atexit calloc memchr memcmp memcpy memmove memset rename strchr \
169 strerror strrchr strstr strtol strtoul tmpnam vfprintf vprintf \
170 vfork waitpid bcmp bcopy bzero
171 needed-list: Makefile
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
181 # required-list was used when building a shared bfd/opcodes/libiberty
182 # library. I don't know if it used by anything currently.
183 required-list: Makefile
184 echo $(REQUIRED_OFILES) > required-list
186 stamp-picdir:
187 if [ x"$(enable_shared)" = xyes ] && [ ! -d pic ]; then \
188 mkdir pic; \
189 else true; fi
190 touch stamp-picdir
192 .PHONY: all etags tags ls clean stage1 stage2
194 etags tags: TAGS etags-subdir
196 TAGS: $(CFILES) $(HFILES)
197 etags `for i in $(HFILES) $(CFILES); do echo $(srcdir)/$$i ; done`
199 # The standalone demangler (c++filt) has been moved to binutils.
200 demangle:
201 @echo "The standalone demangler, now named c++filt, is now"
202 @echo "a part of binutils."
203 @false
206 @echo Makefile $(HFILES) $(CFILES)
208 # Need to deal with profiled libraries, too.
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.
212 mostlyclean: mostlyclean-subdir
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
216 @$(MULTICLEAN) multi-clean DO=mostlyclean
217 clean: clean-subdir
218 $(MAKE) SUBDIRS="" mostlyclean
219 rm -f *.a required-list tmpmulti.out
220 @$(MULTICLEAN) multi-clean DO=clean
221 distclean: distclean-subdir
222 $(MAKE) SUBDIRS="" clean
223 @$(MULTICLEAN) multi-clean DO=distclean
224 rm -f *~ Makefile config.status xhost-mkfrag TAGS multilib.out
225 rm -f config.log
226 maintainer-clean realclean: maintainer-clean-subdir
227 $(MAKE) SUBDIRS="" distclean
229 force:
231 Makefile: $(srcdir)/Makefile.in config.status
232 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
234 config.h: stamp-h ; @true
235 stamp-h: config.in config.status
236 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
238 config.status: $(srcdir)/configure $(srcdir)/config.table
239 $(SHELL) ./config.status --recheck
242 all-subdir check-subdir installcheck-subdir info-subdir \
243 install-info-subdir clean-info-subdir dvi-subdir install-subdir \
244 etags-subdir mostlyclean-subdir clean-subdir distclean-subdir \
245 maintainer-clean-subdir:
246 @target=`echo $@ | sed -e 's/-subdir//'`; \
247 for dir in . $(SUBDIRS) ; do \
248 test $$dir = . || (cd $$dir && $(MAKE) $$target) || exit 1; \
249 done
251 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA): stamp-picdir
253 alloca.o: config.h
254 atexit.o: config.h
255 argv.o: config.h alloca-conf.h $(INCDIR)/libiberty.h
256 basename.o: $(INCDIR)/libiberty.h
257 choose-temp.o: config.h
258 clock.o: config.h
259 concat.o: $(INCDIR)/libiberty.h
260 cplus-dem.o: config.h $(INCDIR)/demangle.h
261 fdmatch.o: $(INCDIR)/libiberty.h
262 fnmatch.o: config.h $(INCDIR)/fnmatch.h
263 getcwd.o: config.h
264 getopt.o: config.h $(INCDIR)/getopt.h
265 getopt1.o: config.h $(INCDIR)/getopt.h
266 getpagesize.o: config.h
267 getpwd.o: config.h $(INCDIR)/libiberty.h
268 getruntime.o: config.h $(INCDIR)/libiberty.h
269 hex.o: $(INCDIR)/libiberty.h
270 floatformat.o: $(INCDIR)/floatformat.h
271 mkstemps.o: config.h
272 objalloc.o: $(INCDIR)/objalloc.h
273 obstack.o: config.h $(INCDIR)/obstack.h
274 pexecute.o: config.h $(INCDIR)/libiberty.h
275 setenv.o: config.h
276 spaces.o: $(INCDIR)/libiberty.h
277 splay-tree.o: config.h $(INCDIR)/libiberty.h $(INCDIR)/splay-tree.h $(INCDIR)/ansidecl.h
278 strerror.o: config.h $(INCDIR)/libiberty.h
279 strsignal.o: config.h $(INCDIR)/libiberty.h
280 xatexit.o: $(INCDIR)/libiberty.h
281 xexit.o: $(INCDIR)/libiberty.h
282 xmalloc.o: $(INCDIR)/libiberty.h
283 xmemdup.o: config.h $(INCDIR)/libiberty.h
284 xstrdup.o: config.h $(INCDIR)/libiberty.h
285 xstrerror.o: config.h $(INCDIR)/libiberty.h
286 hashtab.o: config.h $(INCDIR)/libiberty.h $(INCDIR)/hashtab.h $(INCDIR)/ansidecl.h