blob: 47f5da60a254525ab0fa7627b66200b55450abed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# $Id: Makefile,v 1.2 1995/12/14 03:42:17 deraadt Exp $
LIB= g++
SRCS= AllocRing.cc Obstack.cc builtin.cc \
regex.cc Regex.cc String.cc Integer.cc Rational.cc Complex.cc Random.cc \
BitSet.cc BitString.cc LogNorm.cc SmplHist.cc SmplStat.cc \
Normal.cc NegExp.cc Weibull.cc Erlang.cc DiscUnif.cc \
Uniform.cc Poisson.cc HypGeom.cc Geom.cc Binomial.cc \
RNG.cc ACG.cc MLCG.cc RndInt.cc \
Fix.cc Fix16.cc Fix24.cc CursesW.cc GetOpt.cc $(EH_FILES) \
new.cc chr.cc dtoa.cc error.cc gcd.cc hash.cc \
lg.cc fmtq.cc ioob.cc pow.cc sqrt.cc str.cc timer.cc \
math.cc compare.cc SLList.cc DLList.cc \
streambuf.C stdstrbufs.C iostream.C stdstreams.C \
strstream.C indstream.C PlotFile.C SFile.C fstream.C \
parsestream.C stream.C makebuf.C editbuf.C filebuf.C \
sgetline.C igetline.C igetsb.C procbuf.C sbufvform.C \
sbufvscan.C stdiostream.C floatconv.C outfloat.C iomanip.C
CXXFLAGS+= -nostdinc++ -I$(.CURDIR)/../g++-include \
-I$(.CURDIR)/../iostream
CFLAGS+= -I$(.CURDIR)
LDADD= ${DESTDIR}/usr/lib/c++rt0.o -lcurses
DPADD= ${DESTDIR}/usr/lib/c++rt0.o ${LIBCURSES}
NOMAN= noman
.PATH: $(.CURDIR)/../iostream
LIBCURSES!= printf "xxx:\n\techo \$${LIBCURSES}\n.include <bsd.prog.mk>" |\
$(MAKE) -r -s -f - xxx | grep curses
.include <bsd.lib.mk>
|