Old snapshot `BigInteger-2004.12.16'; see the ChangeLog file.
[bigint/bigint.git] / Makefile
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
11 library        : BigUnsigned.o BigInteger.o BigIntegerIO.o
12
13 BigUnsigned.o  : BigUnsigned.h BigUnsigned.cpp
14         g++ -c BigUnsigned.cpp
15
16 BigInteger.o   : BigUnsigned.h BigInteger.h BigInteger.cpp
17         g++ -c BigInteger.cpp
18
19 BigIntegerIO.o : BigUnsigned.h BigInteger.h BigIntegerIO.cpp
20         g++ -c BigIntegerIO.cpp
21
22 po3demo        : library PowersOfThreeDemo.cpp
23         g++ -opo3demo BigUnsigned.o BigInteger.o BigIntegerIO.o PowersOfThreeDemo.cpp
24
25 clean          :
26         rm -f *.o po3demo