Old snapshot `BigInteger-2004.12.16'; see the ChangeLog file.
[bigint/bigint.git] / Makefile
CommitLineData
e67d6049
MM
1#
2# Matt McCutchen's Big Integer Library
3#
4# Please see the project Web site at
5# http://mysite.verizon.net/mccutchen/bigint/
6# for more information and the latest version.
7#
8# December 16, 2004 version
9#
10
11library : BigUnsigned.o BigInteger.o BigIntegerIO.o
12
13BigUnsigned.o : BigUnsigned.h BigUnsigned.cpp
14 g++ -c BigUnsigned.cpp
15
16BigInteger.o : BigUnsigned.h BigInteger.h BigInteger.cpp
17 g++ -c BigInteger.cpp
18
19BigIntegerIO.o : BigUnsigned.h BigInteger.h BigIntegerIO.cpp
20 g++ -c BigIntegerIO.cpp
21
22po3demo : library PowersOfThreeDemo.cpp
23 g++ -opo3demo BigUnsigned.o BigInteger.o BigIntegerIO.o PowersOfThreeDemo.cpp
24
25clean :
26 rm -f *.o po3demo