# Makefile for qmul # # Core Library # $Id: Makefile,v 1.3 2000/08/22 20:48:59 exact Exp exact $ PROG=testmul_gmp all: ${PROG} test: test_20M test_40M test_20M: test_gmp_20M test_cln_20M test_40M: test_gmp_40M test_cln_40M test_gmp_20M: gmp_mul 20000000 4 > out/test_gmp_20M test_cln_20M: qmul 20000000 4 > out/test_cln_20M test_gmp_40M: gmp_mul 40000000 4 > out/test_gmp_40M test_cln_40M: qmul 40000000 4 > out/test_cln_40M testmul_gmp: testmul_gmp.cc ${CXX} ${CXXFLAGS} testmul_gmp.cc -I/usr/unsupported/installers/chenli/include -L/usr/unsupported/installers/chenli/lib -lgmp -o testmul_gmp testmul_cln: testmul_cln.cc ${CXX} ${CXXFLAGS} testmul_cln.cc -I/home/exact/core/dev/new/inc -L/home/exact/core/dev/new/lib -lcore -lLiDIA -lm -o testmul_cln clean: @rm *.o ${PROG}