home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-12-12 | 2.0 KB | 60 lines |
- # Makefile for libg++.a
-
- # Copyright (C) 1988, 1992, 1993 Free Software Foundation
- # originally written by Doug Lea (dl@rocky.oswego.edu)
-
- # This file is part of libg++, the GNU C++ library.
-
- # GNU CC is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY. No author or distributor
- # accepts responsibility to anyone for the consequences of using it
- # or for whether it serves any particular purpose or works at all,
- # unless he says so in writing. Refer to the GNU CC General Public
- # License for full details.
-
- # Everyone is granted permission to copy, modify and redistribute
- # GNU CC, but only under the conditions described in the
- # GNU CC General Public License. A copy of this license is
- # supposed to have been given to you along with GNU CC so you
- # can know your rights and responsibilities. It should be in a
- # file named COPYING. Among other things, the copyright notice
- # and this notice must be preserved on all copies.
-
- srcdir = .
-
- #
- # declarations from here on should not normally need to be changed
- # in order to compile libg++.a
- #
-
- # library sources
-
- EH_FILES =
-
- STREAM_OBJS = File.o ostream.o istream.o streambuf.o filebuf.o Filebuf.o \
- PlotFile.o SFile.o
-
- # Comment out if you're getting regex from somewhere else.
- REGEX_OBJ=regex.o
- OBJS = AllocRing.o Obstack.o builtin.o \
- $(REGEX_OBJ) Regex.o String.o Integer.o Rational.o Complex.o Random.o \
- BitSet.o BitString.o LogNorm.o SmplHist.o SmplStat.o \
- Normal.o NegExp.o Weibull.o Erlang.o DiscUnif.o \
- Uniform.o Poisson.o HypGeom.o Geom.o Binomial.o \
- RNG.o ACG.o MLCG.o RndInt.o \
- Fix.o Fix16.o Fix24.o CursesW.o GetOpt.o $(EH_FILES) \
- new.o chr.o dtoa.o error.o gcd.o hash.o \
- lg.o fmtq.o ioob.o pow.o sqrt.o str.o timer.o \
- math.o compare.o \
- SLList.o DLList.o
-
- DEPEND_SOURCES = $(srcdir)/*.cc
-
- #### host, target, and site dependent Makefile fragments come in here.
- ##
-
- .PHONY: add-to-targetlib
- # Invoked from other directories, overriding $(TARGETLIB).
- add-to-targetlib:
- $(AR) $(AR_FLAGS) $(TARGETLIB) $(OBJS)
-