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