home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / gdb-4.12-src.lha / GNU / src / amiga / gdb-4.12 / libiberty / Makefile.in < prev    next >
Makefile  |  1994-02-03  |  8KB  |  249 lines

  1. #
  2. # Makefile
  3. #   Copyright (C) 1990, 1991, 1992 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
  18. # not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  19. # Cambridge, MA 02139, 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)/lib
  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. oldincludedir =
  52. docdir = $(datadir)/doc
  53.  
  54. SHELL = /bin/sh
  55.  
  56. INSTALL = install -c
  57. INSTALL_PROGRAM = $(INSTALL)
  58. INSTALL_DATA = $(INSTALL)
  59.  
  60. AR = ar
  61. AR_FLAGS = rc
  62.  
  63. CFLAGS = -g
  64. BISON = bison
  65. MAKEINFO = makeinfo
  66. RANLIB = ranlib
  67.  
  68. MAKEOVERRIDES =
  69.  
  70. XTRAFLAGS =
  71.  
  72. TARGETLIB = libiberty.a
  73.  
  74. CONFIG_H = lconfig.h
  75. NEEDED_LIST = lneeded-list
  76.  
  77. # HOST_OFILES contains the list of objects that should be in the
  78. # library (in addition to the REQUIRED_OFILES and EXTRA_OFILES).
  79. # A configuration may override this with a fixed list a object files
  80. # names (hard to maintain), or some other way to generate a list.
  81. HOST_OFILES=`cat needed-list`
  82.  
  83. # Extra targets that the top-level target depends on.
  84. # Specifically, what needs to be made before HOST_OFILES can be used.
  85. # Can be empty if HOST_OFILES is just a list of file names.
  86. DO_ALSO = needed-list
  87.  
  88. # A configuration can specify extra .o files that should be included,
  89. # even if they are in libc. (Perhaps the libc version is buggy.)
  90. EXTRA_OFILES = 
  91.  
  92. all:    $(TARGETLIB)
  93. .PHONY: check installcheck
  94. check installcheck:
  95.  
  96.  
  97. #### Host, target, and site specific Makefile fragments come in here.
  98. ###
  99.  
  100. .c.o:
  101.     $(CC) -c $(CFLAGS) -I. -I$(srcdir)/../include $(HDEFINES) $(XTRAFLAGS) $<
  102.  
  103. # The default target just invokes make recursively.
  104. # However, the automatic configuration (in config/mh_default).
  105. # first causes it to figure out the objects missing in libc.
  106. info install-info clean-info dvi:
  107.  
  108. # NOTE: If you add new files to the library, add them to this list
  109. # (alphabetical), and add them to REQUIRED_OFILES or 'functions.def'.
  110. CFILES = alloca.c argv.c basename.c bcmp.c bcopy.c bzero.c concat.c \
  111.      cplus-dem.c fdmatch.c getcwd.c getopt.c getopt1.c getpagesize.c \
  112.          ieee-float.c index.c insque.c \
  113.      memchr.c memcmp.c memcpy.c memmove.c memset.c \
  114.          obstack.c random.c rename.c rindex.c sigsetmask.c spaces.c \
  115.      strcasecmp.c strncasecmp.c \
  116.          strchr.c strdup.c strerror.c strrchr.c strsignal.c \
  117.          strstr.c strtod.c strtol.c strtoul.c tmpnam.c \
  118.      vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c xmalloc.c
  119. # These are always included in the library.
  120. REQUIRED_OFILES = argv.o basename.o concat.o cplus-dem.o fdmatch.o \
  121.   getopt.o getopt1.o ieee-float.o obstack.o spaces.o strerror.o strsignal.o \
  122.   xmalloc.o 
  123.  
  124. # Do we want/need any config overrides?
  125. #     
  126.  
  127. STAGESTUFF = $(TARGETLIB) *.o
  128.  
  129. INSTALL_DEST = libdir
  130. install: install_to_$(INSTALL_DEST)
  131.  
  132. install_to_libdir: all
  133.     $(INSTALL_DATA) $(TARGETLIB) $(libdir)/$(TARGETLIB).n
  134.     ( cd $(libdir) ; $(RANLIB) $(libdir)/$(TARGETLIB).n )
  135.     mv -f $(libdir)/$(TARGETLIB).n $(libdir)/$(TARGETLIB)
  136.  
  137. install_to_tooldir: all
  138.     $(INSTALL_DATA) $(TARGETLIB) $(tooldir)/lib/$(TARGETLIB).n
  139.     ( cd $(tooldir) ; $(RANLIB) $(tooldir)/lib/$(TARGETLIB).n )
  140.     mv -f $(tooldir)/lib/$(TARGETLIB).n $(tooldir)/lib/$(TARGETLIB)
  141.  
  142. # The default configuration adds to libiberty all those functions that are
  143. # missing in libc.  More precisely, it includes whatever $(CC) fails to find.
  144. # Then a sed+awk combination translates the ld error messages into
  145. # a list of .o files.
  146.  
  147. needed-list: $(NEEDED_LIST)
  148.     cp $(NEEDED_LIST) needed-list
  149.  
  150. lneeded-list: $(EXTRA_OFILES) needed.awk errors
  151.     rm -f lneeded-list
  152.     f=""; \
  153.     for i in `awk -f needed.awk <errors` $(EXTRA_OFILES) ; do \
  154.       case " $$f " in \
  155.         *" $$i "*) ;; \
  156.         *) f="$$f $$i" ;; \
  157.       esac ; \
  158.     done ; \
  159.     echo $$f >>lneeded-list
  160.  
  161. # Generate an awk script that looks for functions in functions.def
  162.  
  163. needed.awk: $(srcdir)/functions.def Makefile
  164.     echo "# !Automatically generated from $(srcdir)/functions.def"\
  165.       "- DO NOT EDIT!" >needed.awk
  166.     grep '^DEF(' < $(srcdir)/functions.def \
  167.         | sed -e '/DEF/s|DEF.\([^,]*\).*|/\1/ { printf "\1.o " }|' \
  168.         >>needed.awk
  169.  
  170. config.h: $(CONFIG_H)
  171.     cp $(CONFIG_H) config.h
  172.  
  173. lconfig.h: needed2.awk errors
  174.     echo "/* !Automatically generated from $(srcdir)/functions.def"\
  175.       "- DO NOT EDIT! */" >lconfig.h
  176.     awk -f needed2.awk <errors >>lconfig.h
  177.  
  178. # Generate an awk script that looks for variables in functions.def
  179.  
  180. needed2.awk: $(srcdir)/functions.def Makefile
  181.     echo "# !Automatically generated from $(srcdir)/functions.def"\
  182.       "- DO NOT EDIT!" >needed2.awk
  183.     grep '^DEFVAR(' < $(srcdir)/functions.def \
  184.      | sed -e '/DEFVAR/s|DEFVAR.\([^,]*\).*|/\1/ { printf "#ifndef NEED_\1\\n#define NEED_\1\\n#endif\\n" }|' \
  185.      >>needed2.awk
  186.     grep '^DEFFUNC(' < $(srcdir)/functions.def \
  187.      | sed -e '/DEFFUNC/s|DEFFUNC.\([^,]*\).*|/\1/ { printf "#ifndef NEED_\1\\n#define NEED_\1\\n#endif\\n" }|' \
  188.      >>needed2.awk
  189.  
  190. dummy.o: $(srcdir)/dummy.c $(srcdir)/functions.def
  191.     $(CC) -c $(CFLAGS) -I. -I$(srcdir)/../include $(HDEFINES) $(XTRAFLAGS) $(srcdir)/dummy.c 2>/dev/null
  192.  
  193. errors: dummy.o $(EXTRA_OFILES)
  194.     -($(CC) -o dummy $(CFLAGS) $(LDFLAGS) dummy.o $(EXTRA_OFILES) $(LOADLIBES)) >errors 2>&1 || true
  195.  
  196. $(HOST_OFILES) $(REQUIRED_OFILES) : config.h
  197.  
  198. RULE1 = $(TARGETLIB)
  199. $(RULE1): $(REQUIRED_OFILES) $(DO_ALSO) .always.
  200.     @$(MAKE) RULE1=not-used RULE2=$(TARGETLIB) \
  201.          HOST_OFILES="$(HOST_OFILES)" \
  202.         "CC=$(CC)" "CFLAGS=$(CFLAGS)" \
  203.         "AR=$(AR)" "AR_FLAGS=$(AR_FLAGS)" "RANLIB=$(RANLIB)" \
  204.         "XTRAFLAGS=$(XTRAFLAGS)" "SHELL=$(SHELL)"
  205.  
  206. # Rule invoked by recursive make in $(RULE1).
  207. RULE2 = not-used
  208. $(RULE2): $(REQUIRED_OFILES) $(HOST_OFILES)
  209.     rm -rf $(TARGETLIB)
  210.     $(AR) $(AR_FLAGS) $(TARGETLIB) \
  211.       $(REQUIRED_OFILES) $(HOST_OFILES)
  212.     $(RANLIB) $(TARGETLIB)
  213.  
  214. .always.:
  215. # Do nothing.
  216.  
  217. .PHONEY: all etags tags ls clean stage1 stage2 .always.
  218.  
  219. etags tags: TAGS
  220.  
  221. TAGS: $(CFILES) $(HFILES)
  222.     etags `for i in $(HFILES) $(CFILES); do echo $(srcdir)/$$i ; done`
  223.  
  224. # The standalone demangler (c++filt) has been moved to binutils.
  225. demangle:
  226.     @echo "The standalone demangler, now named c++filt, is now"
  227.     @echo "a part of binutils."
  228.     @false
  229.  
  230. ls:
  231.     @echo Makefile $(HFILES) $(CFILES)
  232.  
  233. # Need to deal with profiled libraries, too.
  234.  
  235. mostlyclean:
  236.     rm -f *.o core errs \#* *.E a.out
  237.     rm -f needed.awk needed2.awk errors dummy needed-list config.h
  238.     rm -f $(CONFIG_H) $(NEEDED_LIST)
  239. clean: mostlyclean
  240.     rm -f *.a
  241. distclean: clean
  242.     rm -f *~ Makefile config.status alloca-conf.h TAGS
  243. realclean: distclean
  244.  
  245. force:
  246.  
  247. Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
  248.     $(SHELL) ./config.status
  249.