X-Git-Url: https://mattmccutchen.net/bigint/bigint.git/blobdiff_plain/918d66f23e6b2528010db6f121e229f488fe3410..3e1327901d299a537a8d932c49dd330f87ac3bda:/Makefile?ds=sidebyside diff --git a/Makefile b/Makefile index c99cf54..db8cb4f 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,5 @@ # # Matt McCutchen's Big Integer Library -# http://hashproduct.metaesthetics.net/bigint/ # # Mention default target. @@ -8,7 +7,7 @@ all : # Implicit rule to compile C++ files. Modify to your taste. %.o : %.cc - g++ -c -O -Wall -Wextra -pedantic $< + g++ -c -O2 -Wall -Wextra -pedantic $< # Components of the library. library-objects = BigUnsigned.o BigInteger.o BigUnsignedInABase.o BigIntegerUtils.o