OSDN Git Service

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