home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / GCC / GERLIB_DEV08B.LHA / gerlib / libg++ / src / Makefile.in < prev    next >
Encoding:
Makefile  |  1993-12-12  |  2.0 KB  |  60 lines

  1. # Makefile for libg++.a
  2.  
  3. # Copyright (C) 1988, 1992, 1993 Free Software Foundation
  4. #   originally written by Doug Lea (dl@rocky.oswego.edu)
  5.  
  6. # This file is part of libg++, the GNU C++ library.
  7.  
  8. # GNU CC is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY.  No author or distributor
  10. # accepts responsibility to anyone for the consequences of using it
  11. # or for whether it serves any particular purpose or works at all,
  12. # unless he says so in writing.  Refer to the GNU CC General Public
  13. # License for full details.
  14.  
  15. # Everyone is granted permission to copy, modify and redistribute
  16. # GNU CC, but only under the conditions described in the
  17. # GNU CC General Public License.   A copy of this license is
  18. # supposed to have been given to you along with GNU CC so you
  19. # can know your rights and responsibilities.  It should be in a
  20. # file named COPYING.  Among other things, the copyright notice
  21. # and this notice must be preserved on all copies.
  22.  
  23. srcdir = .
  24.  
  25. # declarations from here on should not normally need to be changed 
  26. # in order to compile libg++.a
  27. #
  28.  
  29. # library sources 
  30.  
  31. EH_FILES =
  32.  
  33. STREAM_OBJS = File.o  ostream.o istream.o streambuf.o filebuf.o Filebuf.o \
  34.  PlotFile.o  SFile.o
  35.  
  36. # Comment out if you're getting regex from somewhere else.
  37. REGEX_OBJ=regex.o
  38. OBJS =  AllocRing.o Obstack.o builtin.o \
  39.  $(REGEX_OBJ) Regex.o String.o  Integer.o Rational.o Complex.o Random.o \
  40.  BitSet.o BitString.o LogNorm.o SmplHist.o SmplStat.o \
  41.  Normal.o NegExp.o Weibull.o Erlang.o DiscUnif.o \
  42.  Uniform.o Poisson.o HypGeom.o Geom.o Binomial.o \
  43.  RNG.o ACG.o MLCG.o  RndInt.o  \
  44.  Fix.o Fix16.o Fix24.o CursesW.o GetOpt.o $(EH_FILES) \
  45.  new.o chr.o dtoa.o error.o gcd.o hash.o \
  46.  lg.o fmtq.o ioob.o pow.o sqrt.o str.o timer.o \
  47.  math.o compare.o \
  48.  SLList.o DLList.o
  49.  
  50. DEPEND_SOURCES = $(srcdir)/*.cc
  51.  
  52. #### host, target, and site dependent Makefile fragments come in here.
  53. ##
  54.  
  55. .PHONY: add-to-targetlib
  56. # Invoked from other directories, overriding $(TARGETLIB).
  57. add-to-targetlib:
  58.     $(AR) $(AR_FLAGS) $(TARGETLIB) $(OBJS)
  59.