home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / binutils-2.7-src.tgz / tar.out / fsf / binutils / libiberty / Makefile.in < prev    next >
Makefile  |  1996-09-28  |  10KB  |  323 lines

  1. #
  2. # Makefile
  3. #   Copyright (C) 1990, 1991, 1992, 1995, 1996 Free Software Foundation
  4. #
  5. # This file is part of the libiberty library.
  6. # Libiberty is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU Library General Public
  8. # License as published by the Free Software Foundation; either
  9. # version 2 of the License, or (at your option) any later version.
  10. #
  11. # Libiberty is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. # Library General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Library General Public
  17. # License along with libiberty; see the file COPYING.LIB.  If not,
  18. # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19. # Boston, MA 02111-1307, USA.
  20. #
  21.  
  22. # This file was written, and is maintained by K. Richard Pixley
  23. # <rich@cygnus.com>.
  24.  
  25. #
  26. # Makefile for libiberty directory
  27. #
  28.  
  29. srcdir = .
  30.  
  31. prefix = /usr/local
  32.  
  33. exec_prefix = $(prefix)
  34. bindir = $(exec_prefix)/bin
  35. libdir = $(exec_prefix)/lib
  36.  
  37. datadir = $(prefix)/share
  38.  
  39. mandir = $(prefix)/man
  40. man1dir = $(mandir)/man1
  41. man2dir = $(mandir)/man2
  42. man3dir = $(mandir)/man3
  43. man4dir = $(mandir)/man4
  44. man5dir = $(mandir)/man5
  45. man6dir = $(mandir)/man6
  46. man7dir = $(mandir)/man7
  47. man8dir = $(mandir)/man8
  48. man9dir = $(mandir)/man9
  49. infodir = $(prefix)/info
  50. includedir = $(prefix)/include
  51.  
  52. SHELL = /bin/sh
  53.  
  54. # Multilib support variables.
  55. MULTISRCTOP =
  56. MULTIBUILDTOP =
  57. MULTIDIRS =
  58. MULTISUBDIR =
  59. MULTIDO = true
  60. MULTICLEAN = true
  61.  
  62. INSTALL = install -c
  63. INSTALL_PROGRAM = $(INSTALL)
  64. INSTALL_DATA = $(INSTALL)
  65.  
  66. AR = ar
  67. AR_FLAGS = rc
  68.  
  69. ERRORS_CC = $(CC)
  70. CC = cc
  71. CFLAGS = -g
  72. LIBCFLAGS = $(CFLAGS)
  73. MAKEINFO = makeinfo
  74. RANLIB = ranlib
  75.  
  76. PICFLAG =
  77.  
  78. MAKEOVERRIDES =
  79.  
  80. TARGETLIB = libiberty.a
  81.  
  82. CONFIG_H = lconfig.h
  83. NEEDED_LIST = lneeded-list
  84.  
  85. # HOST_OFILES contains the list of objects that should be in the
  86. # library (in addition to the REQUIRED_OFILES and EXTRA_OFILES).
  87. # A configuration may override this with a fixed list a object files
  88. # names (hard to maintain), or some other way to generate a list.
  89. HOST_OFILES=`cat needed-list`
  90.  
  91. # Extra targets that the top-level target depends on.
  92. # Specifically, what needs to be made before HOST_OFILES can be used.
  93. # Can be empty if HOST_OFILES is just a list of file names.
  94. DO_ALSO = needed-list
  95.  
  96. # A configuration can specify extra .o files that should be included,
  97. # even if they are in libc. (Perhaps the libc version is buggy.)
  98. EXTRA_OFILES = 
  99.  
  100. # Flags to pass to a recursive make.
  101. FLAGS_TO_PASS = \
  102.     "AR=$(AR)" \
  103.     "AR_FLAGS=$(AR_FLAGS)" \
  104.     "CC=$(CC)" \
  105.     "CFLAGS=$(CFLAGS)" \
  106.     "LIBCFLAGS=$(LIBCFLAGS)" \
  107.     "EXTRA_OFILES=$(EXTRA_OFILES)" \
  108.     "HDEFINES=$(HDEFINES)" \
  109.     "LDFLAGS=$(LDFLAGS)" \
  110.     "LOADLIBES=$(LOADLIBES)" \
  111.     "PICFLAG=$(PICFLAG)" \
  112.     "RANLIB=$(RANLIB)" \
  113.     "SHELL=$(SHELL)"
  114.  
  115. all: stamp-picdir $(TARGETLIB) required-list
  116.     @if [ "$(RULE1)" != "not-used" ]; then \
  117.       $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all; \
  118.     else true; \
  119.     fi
  120.  
  121. .PHONY: check installcheck
  122. check installcheck:
  123.  
  124.  
  125. #### Host, target, and site specific Makefile fragments come in here.
  126. ###
  127.  
  128. INCDIR=$(srcdir)/$(MULTISRCTOP)../include
  129.  
  130. COMPILE.c = $(CC) -c $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES)
  131. .c.o:
  132.     test -z "$(PICFLAG)" || \
  133.       $(COMPILE.c) $(PICFLAG) $< -o pic/$@
  134.     $(COMPILE.c) $<
  135.  
  136. # The default target just invokes make recursively.
  137. # However, the automatic configuration (in config/mh_default).
  138. # first causes it to figure out the objects missing in libc.
  139. info install-info clean-info dvi:
  140.  
  141. # Include files that are in this directory.
  142. HFILES =
  143.  
  144. # NOTE: If you add new files to the library, add them to this list
  145. # (alphabetical), and add them to REQUIRED_OFILES or 'functions.def'.
  146. CFILES = alloca.c argv.c atexit.c basename.c bcmp.c bcopy.c bzero.c \
  147.      choose-temp.c clock.c concat.c cplus-dem.c fdmatch.c \
  148.      getcwd.c getopt.c getopt1.c getpagesize.c getruntime.c \
  149.          floatformat.c hex.c index.c insque.c \
  150.      memchr.c memcmp.c memcpy.c memmove.c memset.c \
  151.          obstack.c random.c rename.c rindex.c sigsetmask.c spaces.c \
  152.      strcasecmp.c strncasecmp.c \
  153.          strchr.c strdup.c strerror.c strrchr.c strsignal.c \
  154.          strstr.c strtod.c strtol.c strtoul.c tmpnam.c \
  155.      vasprintf.c vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c \
  156.      xatexit.c xexit.c xmalloc.c xstrdup.c xstrerror.c
  157. # These are always included in the library.
  158. REQUIRED_OFILES = argv.o basename.o choose-temp.o concat.o cplus-dem.o \
  159.   fdmatch.o getopt.o getopt1.o getruntime.o hex.o \
  160.   floatformat.o obstack.o spaces.o strerror.o strsignal.o \
  161.   vasprintf.o xatexit.o xexit.o xmalloc.o xstrdup.o xstrerror.o
  162.  
  163. # Do we want/need any config overrides?
  164. #     
  165.  
  166. STAGESTUFF = $(TARGETLIB) *.o
  167.  
  168. INSTALL_DEST = libdir
  169. install: install_to_$(INSTALL_DEST)
  170.  
  171. install_to_libdir: all
  172.     $(INSTALL_DATA) $(TARGETLIB) $(libdir)/$(TARGETLIB).n
  173.     ( cd $(libdir) ; $(RANLIB) $(libdir)/$(TARGETLIB).n )
  174.     mv -f $(libdir)/$(TARGETLIB).n $(libdir)$(MULTISUBDIR)/$(TARGETLIB)
  175.     @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
  176.  
  177. install_to_tooldir: all
  178.     $(INSTALL_DATA) $(TARGETLIB) $(tooldir)/lib/$(TARGETLIB).n
  179.     ( cd $(tooldir) ; $(RANLIB) $(tooldir)/lib/$(TARGETLIB).n )
  180.     mv -f $(tooldir)/lib/$(TARGETLIB).n $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)
  181.     @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
  182.  
  183. # The default configuration adds to libiberty all those functions that are
  184. # missing in libc.  More precisely, it includes whatever $(CC) fails to find.
  185. # Then a sed+awk combination translates the ld error messages into
  186. # a list of .o files.
  187.  
  188. needed-list: stamp-picdir $(NEEDED_LIST)
  189.     cp $(NEEDED_LIST) needed-list
  190.  
  191. lneeded-list: $(EXTRA_OFILES) needed.awk errors
  192.     rm -f lneeded-list
  193.     f=""; \
  194.     for i in `awk -f needed.awk <errors` $(EXTRA_OFILES) ; do \
  195.       case " $$f " in \
  196.         *" $$i "*) ;; \
  197.         *) f="$$f $$i" ;; \
  198.       esac ; \
  199.     done ; \
  200.     case $$f in \
  201.         *alloca.o*) f="$$f xmalloc.o" ;; \
  202.     esac ; \
  203.     echo $$f >>lneeded-list
  204.  
  205. # Generate an awk script that looks for functions in functions.def
  206.  
  207. needed.awk: $(srcdir)/functions.def Makefile
  208.     echo "# !Automatically generated from $(srcdir)/functions.def"\
  209.       "- DO NOT EDIT!" >needed.awk
  210.     grep '^DEF(' < $(srcdir)/functions.def \
  211.         | sed -e '/DEF/s|DEF.\([^,]*\).*|/\1/ { printf "\1.o " }|' \
  212.         >>needed.awk
  213.  
  214. config.h: $(CONFIG_H)
  215.     cp $(CONFIG_H) config.h
  216.  
  217. lconfig.h: needed2.awk errors
  218.     echo "/* !Automatically generated from $(srcdir)/functions.def"\
  219.       "- DO NOT EDIT! */" >lconfig.h
  220.     awk -f needed2.awk <errors >>lconfig.h
  221.  
  222. # Generate an awk script that looks for variables in functions.def
  223.  
  224. needed2.awk: $(srcdir)/functions.def Makefile
  225.     echo "# !Automatically generated from $(srcdir)/functions.def"\
  226.       "- DO NOT EDIT!" >needed2.awk
  227.     grep '^DEFVAR(' < $(srcdir)/functions.def \
  228.      | sed -e '/DEFVAR/s|DEFVAR.\([^,]*\).*|/\1/ { printf "#ifndef NEED_\1\\n#define NEED_\1\\n#endif\\n" }|' \
  229.      >>needed2.awk
  230.     grep '^DEFFUNC(' < $(srcdir)/functions.def \
  231.      | sed -e '/DEFFUNC/s|DEFFUNC.\([^,]*\).*|/\1/ { printf "#ifndef NEED_\1\\n#define NEED_\1\\n#endif\\n" }|' \
  232.      >>needed2.awk
  233.  
  234. dummy.o: $(srcdir)/dummy.c $(srcdir)/functions.def
  235.     $(CC) -c $(CFLAGS) -I. -I$(INCDIR) $(HDEFINES) $(srcdir)/dummy.c 2>/dev/null
  236.  
  237. errors: dummy.o $(EXTRA_OFILES)
  238.     -($(ERRORS_CC) -o dummy $(CFLAGS) $(LDFLAGS) $(ERRORS_LDFLAGS) dummy.o $(EXTRA_OFILES) $(LOADLIBES)) >errors 2>&1 || true
  239.  
  240. # required-list is used when building a shared bfd/opcodes/libiberty library.
  241. required-list: Makefile
  242.     echo $(REQUIRED_OFILES) > required-list
  243.  
  244. $(HOST_OFILES) $(REQUIRED_OFILES) : config.h
  245.  
  246. RULE1 = $(TARGETLIB)
  247. $(RULE1): $(REQUIRED_OFILES) $(DO_ALSO) .always.
  248.     @$(MAKE) RULE1=not-used RULE2=$(TARGETLIB) $(FLAGS_TO_PASS) \
  249.         "HOST_OFILES=$(HOST_OFILES)"
  250.  
  251. # Rule invoked by recursive make in $(RULE1).
  252. RULE2 = not-used
  253. $(RULE2): $(REQUIRED_OFILES) $(HOST_OFILES)
  254.     rm -rf $(TARGETLIB)
  255.     $(AR) $(AR_FLAGS) $(TARGETLIB) \
  256.       $(REQUIRED_OFILES) $(HOST_OFILES)
  257.     $(RANLIB) $(TARGETLIB)
  258.  
  259. stamp-picdir:
  260.     if [ -n "$(PICFLAG)" ] && [ ! -d pic ]; then \
  261.       mkdir pic; \
  262.     else true; fi
  263.     touch stamp-picdir
  264.  
  265. .always.:
  266. # Do nothing.
  267.  
  268. .PHONY: all etags tags ls clean stage1 stage2 .always.
  269.  
  270. etags tags: TAGS
  271.  
  272. TAGS: $(CFILES) $(HFILES)
  273.     etags `for i in $(HFILES) $(CFILES); do echo $(srcdir)/$$i ; done`
  274.  
  275. # The standalone demangler (c++filt) has been moved to binutils.
  276. demangle:
  277.     @echo "The standalone demangler, now named c++filt, is now"
  278.     @echo "a part of binutils."
  279.     @false
  280.  
  281. ls:
  282.     @echo Makefile $(HFILES) $(CFILES)
  283.  
  284. # Need to deal with profiled libraries, too.
  285.  
  286. mostlyclean:
  287.     rm -rf *.o pic core errs \#* *.E a.out
  288.     rm -f needed.awk needed2.awk errors dummy needed-list config.h
  289.     rm -f $(CONFIG_H) $(NEEDED_LIST) stamp-picdir
  290.     @$(MULTICLEAN) multi-clean DO=mostlyclean
  291. clean: mostlyclean
  292.     rm -f *.a required-list
  293.     @$(MULTICLEAN) multi-clean DO=clean
  294. distclean: clean
  295.     rm -f *~ Makefile config.status alloca-conf.h xhost-mkfrag TAGS
  296.     @$(MULTICLEAN) multi-clean DO=distclean
  297. maintainer-clean realclean: distclean
  298.  
  299. force:
  300.  
  301. Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
  302.     $(SHELL) ./config.status
  303.  
  304. argv.o: $(INCDIR)/libiberty.h
  305. basename.o: $(INCDIR)/libiberty.h
  306. concat.o: $(INCDIR)/libiberty.h
  307. cplus-dem.o: $(INCDIR)/demangle.h
  308. fdmatch.o: $(INCDIR)/libiberty.h
  309. getopt.o: $(INCDIR)/getopt.h
  310. getopt1.o: $(INCDIR)/getopt.h
  311. getruntime.o: $(INCDIR)/libiberty.h
  312. hex.o: $(INCDIR)/libiberty.h
  313. floatformat.o: $(INCDIR)/floatformat.h
  314. obstack.o: $(INCDIR)/obstack.h
  315. spaces.o: $(INCDIR)/libiberty.h
  316. strerror.o: $(INCDIR)/libiberty.h
  317. strsignal.o: $(INCDIR)/libiberty.h
  318. xatexit.o: $(INCDIR)/libiberty.h
  319. xexit.o: $(INCDIR)/libiberty.h
  320. xmalloc.o: $(INCDIR)/libiberty.h
  321. xstrdup.o: $(INCDIR)/libiberty.h
  322. xstrerror.o: $(INCDIR)/libiberty.h
  323.