home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / g77-0.5.15-src.tgz / tar.out / fsf / g77 / f / Make-lang.in < prev    next >
Text File  |  1996-09-28  |  12KB  |  383 lines

  1. # Top level makefile fragment for GNU C++.
  2. #   Copyright (C) 1995 Free Software Foundation, Inc.
  3.  
  4. #This file is part of GNU Fortran.
  5.  
  6. #GNU Fortran is free software; you can redistribute it and/or modify
  7. #it under the terms of the GNU General Public License as published by
  8. #the Free Software Foundation; either version 2, or (at your option)
  9. #any later version.
  10.  
  11. #GNU Fortran 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
  14. #GNU General Public License for more details.
  15.  
  16. #You should have received a copy of the GNU General Public License
  17. #along with GNU Fortran; see the file COPYING.  If not, write to
  18. #the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20. # This file provides the language dependent support in the main Makefile.
  21. # Each language makefile fragment must provide the following targets:
  22. #
  23. # foo.all.build, foo.all.cross, foo.start.encap, foo.rest.encap,
  24. # foo.info, foo.dvi,
  25. # foo.install-normal, foo.install-common, foo.install-info, foo.install-man,
  26. # foo.uninstall, foo.distdir,
  27. # foo.mostlyclean, foo.clean, foo.distclean, foo.extraclean, foo.realclean,
  28. # foo.stage1, foo.stage2, foo.stage3, foo.stage4
  29. #
  30. # where `foo' is the name of the language.
  31. #
  32. # It should also provide rules for:
  33. #
  34. # - making any compiler driver (eg: g++)
  35. # - the compiler proper (eg: f771)
  36. # - define the names for selecting the language in LANGUAGES.
  37.  
  38. # Extra flags to pass to recursive makes (and to sub-configure).
  39. # Use different quoting rules compared with FLAGS_TO_PASS so we can use
  40. # this to set environment variables as well
  41. # Note that GCC_FOR_TARGET, GCC_FLAGS aren't in here -- treated separately.
  42. F77_FLAGS_TO_PASS = \
  43.     CROSS="$(CROSS)" \
  44.     AR_FLAGS="$(AR_FLAGS)" \
  45.     AR_FOR_TARGET="$(AR_FOR_TARGET)" \
  46.     BISON="$(BISON)" \
  47.     BISONFLAGS="$(BISONFLAGS)" \
  48.     CC="$(CC)" \
  49.     CFLAGS="$(CFLAGS)" \
  50.     LDFLAGS="$(LDFLAGS)" \
  51.     LEX="$(LEX)" \
  52.     LEXFLAGS="$(LEXFLAGS)" \
  53.     MAKEINFO="$(MAKEINFO)" \
  54.     MAKEINFOFLAGS="$(MAKEINFOFLAGS)" \
  55.     RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)" \
  56.     RANLIB_TEST_FOR_TARGET="$(RANLIB_TEST_FOR_TARGET)" \
  57.     SHELL="$(SHELL)" \
  58.     exec_prefix="$(exec_prefix)" \
  59.     prefix="$(prefix)" \
  60.     tooldir="$(tooldir)" \
  61.     bindir="$(bindir)" \
  62.     libsubdir="$(libsubdir)"
  63. #    "F77_FOR_BUILD=$(F77_FOR_BUILD)" \
  64. #    "F77FLAGS=$(F77FLAGS)" \
  65. #    "F77_FOR_TARGET=$(F77_FOR_TARGET)"
  66.  
  67. # Actual names to use when installing a native compiler.
  68. F77_INSTALL_NAME = f77
  69. G77_INSTALL_NAME = g77
  70.  
  71. # Override the normal gcc install target.
  72. INSTALL_TARGET=f77.install-normal f77.install-common
  73.  
  74. # Actual names to use when installing a cross-compiler.
  75. F77_CROSS_NAME = $(target)-f77
  76. G77_CROSS_NAME = $(target)-g77
  77.  
  78.  
  79. # Define the names for selecting f77 in LANGUAGES.
  80. # Note that it would be nice to move the dependency on g77
  81. # into the F77 rule, but that needs a little bit of work
  82. # to do the right thing within all.cross.
  83. F77 f77: f771 f77-runtime
  84.  
  85. # Create the compiler driver for g77.
  86. g77: $(srcdir)/f/g77.c $(CONFIG_H) $(LIBDEPS)
  87.     $(CC) $(ALL_CFLAGS) $(INCLUDES) $(LDFLAGS) -o g77 $(srcdir)/f/g77.c $(LIBS)
  88.  
  89. # Create a version of the g77 driver which calls the cross-compiler.
  90. g77-cross: $(srcdir)/f/g77.c
  91.     $(CC) $(ALL_CFLAGS) $(INCLUDES) $(LDFLAGS) -o g77-cross \
  92.        -DGCC_NAME=\"$(GCC_CROSS_NAME)\" $(srcdir)/f/g77.c version.o $(LIBS)
  93.  
  94. F77_SRCS = \
  95.  $(srcdir)/f/assert.j \
  96.  $(srcdir)/f/bad.c \
  97.  $(srcdir)/f/bad.def \
  98.  $(srcdir)/f/bad.h \
  99.  $(srcdir)/f/bit.c \
  100.  $(srcdir)/f/bit.h \
  101.  $(srcdir)/f/bld-op.def \
  102.  $(srcdir)/f/bld.c \
  103.  $(srcdir)/f/bld.h \
  104.  $(srcdir)/f/com-rt.def \
  105.  $(srcdir)/f/com.c \
  106.  $(srcdir)/f/com.h \
  107.  $(srcdir)/f/config.j \
  108.  $(srcdir)/f/convert.j \
  109.  $(srcdir)/f/data.c \
  110.  $(srcdir)/f/data.h \
  111.  $(srcdir)/f/equiv.c \
  112.  $(srcdir)/f/equiv.h \
  113.  $(srcdir)/f/expr.c \
  114.  $(srcdir)/f/expr.h \
  115.  $(srcdir)/f/fini.c \
  116.  $(srcdir)/f/flags.j \
  117.  $(srcdir)/f/glimits.j \
  118.  $(srcdir)/f/global.c \
  119.  $(srcdir)/f/global.h \
  120.  $(srcdir)/f/hconfig.j \
  121.  $(srcdir)/f/implic.c \
  122.  $(srcdir)/f/implic.h \
  123.  $(srcdir)/f/info-b.def \
  124.  $(srcdir)/f/info-k.def \
  125.  $(srcdir)/f/info-w.def \
  126.  $(srcdir)/f/info.c \
  127.  $(srcdir)/f/info.h \
  128.  $(srcdir)/f/intrin.c \
  129.  $(srcdir)/f/intrin.def \
  130.  $(srcdir)/f/intrin.h \
  131.  $(srcdir)/f/lab.c \
  132.  $(srcdir)/f/lab.h \
  133.  $(srcdir)/f/lex.c \
  134.  $(srcdir)/f/lex.h \
  135.  $(srcdir)/f/malloc.c \
  136.  $(srcdir)/f/malloc.h \
  137.  $(srcdir)/f/name.c \
  138.  $(srcdir)/f/name.h \
  139.  $(srcdir)/f/parse.c \
  140.  $(srcdir)/f/proj.c \
  141.  $(srcdir)/f/proj.h \
  142.  $(srcdir)/f/rtl.j \
  143.  $(srcdir)/f/src.c \
  144.  $(srcdir)/f/src.h \
  145.  $(srcdir)/f/st.c \
  146.  $(srcdir)/f/st.h \
  147.  $(srcdir)/f/sta.c \
  148.  $(srcdir)/f/sta.h \
  149.  $(srcdir)/f/stb.c \
  150.  $(srcdir)/f/stb.h \
  151.  $(srcdir)/f/stc.c \
  152.  $(srcdir)/f/stc.h \
  153.  $(srcdir)/f/std.c \
  154.  $(srcdir)/f/std.h \
  155.  $(srcdir)/f/ste.c \
  156.  $(srcdir)/f/ste.h \
  157.  $(srcdir)/f/storag.c \
  158.  $(srcdir)/f/storag.h \
  159.  $(srcdir)/f/stp.c \
  160.  $(srcdir)/f/stp.h \
  161.  $(srcdir)/f/str-1t.fin \
  162.  $(srcdir)/f/str-2t.fin \
  163.  $(srcdir)/f/str-fo.fin \
  164.  $(srcdir)/f/str-io.fin \
  165.  $(srcdir)/f/str-nq.fin \
  166.  $(srcdir)/f/str-op.fin \
  167.  $(srcdir)/f/str-ot.fin \
  168.  $(srcdir)/f/str.c \
  169.  $(srcdir)/f/str.h \
  170.  $(srcdir)/f/sts.c \
  171.  $(srcdir)/f/sts.h \
  172.  $(srcdir)/f/stt.c \
  173.  $(srcdir)/f/stt.h \
  174.  $(srcdir)/f/stu.c \
  175.  $(srcdir)/f/stu.h \
  176.  $(srcdir)/f/stv.c \
  177.  $(srcdir)/f/stv.h \
  178.  $(srcdir)/f/stw.c \
  179.  $(srcdir)/f/stw.h \
  180.  $(srcdir)/f/symbol.c \
  181.  $(srcdir)/f/symbol.def \
  182.  $(srcdir)/f/symbol.h \
  183.  $(srcdir)/f/target.c \
  184.  $(srcdir)/f/target.h \
  185.  $(srcdir)/f/tconfig.j \
  186.  $(srcdir)/f/tm.j \
  187.  $(srcdir)/f/top.c \
  188.  $(srcdir)/f/top.h \
  189.  $(srcdir)/f/tree.j \
  190.  $(srcdir)/f/type.c \
  191.  $(srcdir)/f/type.h \
  192.  $(srcdir)/f/where.c \
  193.  $(srcdir)/f/where.h \
  194.  $(srcdir)/f/zzz.c \
  195.  $(srcdir)/f/zzz.h
  196.  
  197. f771: $(P) $(F77_SRCS) $(LIBDEPS) stamp-objlist f/Makefile
  198.     $(MAKE) -f f/Makefile $(FLAGS_TO_PASS) VPATH=$(srcdir) srcdir=$(srcdir)/f f771
  199.  
  200. f/Makefile: $(srcdir)/f/Makefile.in $(srcdir)/configure
  201.     $(SHELL) config.status
  202.  
  203. # Note that the runtime is built in the top-level directory rather
  204. # than in f/runtime a la the Cygnus CHILL example; then xgcc -B./ will
  205. # find it.  Use an absolute name for GCC_FOR_TARGET (so we don't have
  206. # to keep stage? links around everywhere) unless this value has been
  207. # overridden from the default "./xgcc -B./", hence the case statement.
  208. # We depend on GCC_PASSES through f/runtime/Makefile.
  209. stmp-int-hdrs = stmp-int-hdrs    # to be overrideable in unsafe version
  210. f77-runtime:  f/runtime/Makefile include/f2c.h $(stmp-int-headers)
  211.     case "$(LANGUAGES)" in \
  212.     *f77*) top=`pwd`; \
  213.       cd f/runtime && $(MAKE) \
  214.             GCC_FOR_TARGET="`case '$(GCC_FOR_TARGET)' in \
  215.              './xgcc  -B./') echo $${top}/xgcc -B$${top}/;; \
  216.              *) echo '$(GCC_FOR_TARGET)';; esac`" \
  217.             GCC_FLAGS="$(GCC_FLAGS)" $(F77_FLAGS_TO_PASS) \
  218.             all ;; \
  219.         esac
  220.  
  221. # This one doesn't depend on cc1 etc. but f2c.h may not be found, 
  222. # in particular, at present...
  223. f77-runtime-unsafe:
  224.     $(MAKE) stmp-int-hdrs= GCC_PARTS= f77-runtime
  225.  
  226. # The configuration of the runtime system relies on an autoconf-type
  227. # configure, not a Cygnus-type one.  It needs to be run *after* the
  228. # appropriate (cross-)compiler has been built, thus depend on GCC_PARTS.
  229. # NB, sh uses the *first* value of $a from `a=fred a=joe prog'.
  230. include/f2c.h f/runtime/Makefile: $(srcdir)/f/runtime/f2c.h.in \
  231.              $(srcdir)/f/com.h f/proj.h \
  232.             $(srcdir)/f/runtime/Makefile.in $(GCC_PARTS) \
  233.             $(srcdir)/config/$(xmake_file) $(srcdir)/config/$(tmake_file)
  234. # The make "stage?" in compiler spec. is fully qualified as above
  235.     top=`pwd`; \
  236.     src=`cd $(srcdir); pwd`; \
  237.           cd f/runtime; \
  238.           CC="`case '$(GCC_FOR_TARGET)' in \
  239.              './xgcc  -B./') echo $${top}/xgcc -B$${top}/;; \
  240.              *) echo '$(GCC_FOR_TARGET)';; esac`" \
  241.           $(F77_FLAGS_TO_PASS) CONFIG_SITE=/dev/null $(SHELL) \
  242.           $${src}/f/runtime/configure --srcdir=$${src}/f/runtime
  243.  
  244. #For now, omit f2c stuff.  -- burley
  245. #f2c: stmp-int-hdrs f/f2c/Makefile
  246. #    cd f/f2c; $(MAKE) all
  247. #
  248. #f/f2c/Makefile: $(srcdir)/f/f2c/Makefile.in $(GCC_PARTS) \
  249. #            $(srcdir)/config/$(xmake_file) $(srcdir)/config/$(tmake_file)
  250. #    top=`pwd`; cd f/f2c; \
  251. #          $${top}/f/f2c/configure --srcdir=$${top}/f/f2c
  252.  
  253. # Build hooks:
  254.  
  255. # I'm not sure there's a way of getting f2c into here conditionally on
  256. # the --enable-f2c flag detected by config-lang.in so kluge it with the
  257. # maybe-f2c target by looking at STAGESTUFF.
  258. f77.all.build: g77 maybe-f2c
  259. f77.all.cross: g77-cross maybe-f2c
  260. f77.start.encap: g77 maybe-f2c
  261. f77.rest.encap:
  262.  
  263. f77.info:
  264. f77.dvi:
  265.  
  266. maybe-f2c:
  267. #For now, omit f2c stuff.  -- burley
  268. #    case "$(STAGESTUFF)" in *f2c*) $(MAKE) f2c;; esac
  269.  
  270. # Install hooks:
  271. # f771 is installed here so we don't clobber an existing gcc
  272. # installation
  273.  
  274. f77.install-normal: install-libf77
  275.  
  276. # Install the F77 run time library.
  277. install-libf77: f77-runtime
  278. # Check for the presence of other versions of the library and includes.
  279. # Test libf2c.* in case of a shared version, for instance.
  280.     @if test "`echo $(libdir)/libf2c.*`" != "$(libdir)/libf2c.*" && \
  281.           test -z "$(F2CLIBOK)" ; then \
  282.    echo ; \
  283.    echo 'You already have a version of libf2c installed as' $(libdir)/libf2c.*; \
  284.    echo 'To use g77 this must be consistent with the one that will be built.'; \
  285.    echo 'You should probably delete it and/or install ./libf2c.a in its place.'; \
  286.    echo 'Resume the "make install" after removing the existing library or'; \
  287.    echo 'define the make variable F2CLIBOK to avoid this test.'; \
  288.    echo 'Check also for' $(includedir)/f2c.h 'per INSTALL instructions.'; \
  289.    echo '(Note that a quick and easy way to resume "make -k install" is to'; \
  290.    echo 'use "make install-libf77".)'; \
  291.    exit 1; else true; fi
  292.     if [ -f libf2c.a ] ; then \
  293.       $(INSTALL_DATA) libf2c.a $(libsubdir)/libf2c.a; \
  294.       if $(RANLIB_TEST) ; then \
  295.         (cd $(libsubdir); $(RANLIB) libf2c.a); else true; fi; \
  296.       chmod a-x $(libsubdir)/libf2c.a; \
  297.     else true; fi
  298.     if [ -f include/f2c.h ] ; then \
  299.       $(INSTALL_DATA) include/f2c.h $(libsubdir)/include/f2c.h; \
  300.     else true; fi
  301.     for file in f771; do \
  302.       if [ -f $$file ] ; then \
  303.         rm -f $(libsubdir)/$$file; \
  304.         $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
  305.       else true; \
  306.       fi; \
  307.     done
  308.  
  309. # Install the driver program as $(target)-g77
  310. # and also as either g77 (if native) or $(tooldir)/bin/g77.
  311. f77.install-common:
  312.     -if [ -f f771 ] ; then \
  313.       if [ -f g77-cross ] ; then \
  314.         rm -f $(bindir)/$(G77_CROSS_NAME); \
  315.         $(INSTALL_PROGRAM) g77-cross $(bindir)/$(G77_CROSS_NAME); \
  316.         chmod a+x $(bindir)/$(G77_CROSS_NAME); \
  317.         rm -f $(bindir)/$(F77_CROSS_NAME); \
  318.         ln $(bindir)/$(G77_CROSS_NAME) $(bindir)/$(F77_CROSS_NAME); \
  319.       else \
  320.         rm -f $(bindir)/$(G77_INSTALL_NAME); \
  321.         $(INSTALL_PROGRAM) g77 $(bindir)/$(G77_INSTALL_NAME); \
  322.         chmod a+x $(bindir)/$(G77_INSTALL_NAME); \
  323.         rm -f $(bindir)/$(F77_INSTALL_NAME); \
  324.         $(INSTALL_PROGRAM) g77 $(bindir)/$(F77_INSTALL_NAME); \
  325.         chmod a+x $(bindir)/$(F77_INSTALL_NAME); \
  326.       fi ; \
  327.     else true; fi
  328.  
  329. f77.install-info:
  330.  
  331. f77.install-man: $(srcdir)/f/g77.1
  332.     -if [ -f f771 ] ; then \
  333.       $(INSTALL_DATA) $(srcdir)/f/g77.1 $(mandir)/g77$(manext) ; \
  334.       chmod a-x $(mandir)/g77$(manext) ; \
  335.     else true; fi
  336.  
  337. f77.uninstall:
  338.     -rm -rf $(bindir)/$(F77_CROSS_NAME)
  339.     -rm -rf $(bindir)/$(G77_INSTALL_NAME)
  340.     -rm -rf $(bindir)/$(G77_CROSS_NAME)
  341.     -rm -rf $(mandir)/g77$(manext)
  342.     -rm -rf $(libsubdir)/libf2c.a
  343.  
  344. # Clean hooks:
  345. # A lot of the ancillary files are deleted by the main makefile.
  346. # We just have to delete files specific to us.
  347.  
  348. f77.mostlyclean:
  349.     -rm -f f/*.o
  350.     -cd f/runtime; $(MAKE) mostlyclean
  351. f77.clean: f77.mostlyclean
  352. f77.distclean: f77.clean
  353.     -rm -f f/Makefile
  354.     -rm -f f/fini f/f771 f/stamp-str f/str-*.h f/str-*.j
  355.     -cd f/runtime; $(MAKE) distclean
  356. f77.extraclean f77.realclean: f77.distclean
  357.  
  358. # Stage hooks:
  359. # The main makefile has already created stage?/f.
  360.  
  361. G77STAGESTUFF = f/*.o f/fini f/stamp-str f/str-*.h f/str-*.j
  362.  
  363. f77.stage1:
  364.     -mv $(G77STAGESTUFF) stage1/f
  365. f77.stage2:
  366.     -mv $(G77STAGESTUFF) stage2/f
  367. f77.stage3:
  368.     -mv $(G77STAGESTUFF) stage3/f
  369. f77.stage4:
  370.     -mv $(G77STAGESTUFF) stage4/f
  371.  
  372. # Maintenance hooks:
  373.  
  374. # This target creates the files that can be rebuilt, but go in the
  375. # distribution anyway.  It then copies the files to the distdir directory.
  376. f77.distdir:
  377.     mkdir tmp/f
  378. #    cd f ; $(MAKE) $(FLAGS_TO_PASS) $(F77_FLAGS_TO_PASS) ?no files?
  379.     cd f; \
  380.     for file in *[0-9a-zA-Z+]; do \
  381.       ln $$file ../tmp/f >/dev/null 2>&1 || cp $$file ../tmp/f; \
  382.     done
  383.