Quadratic algorithm supports sign, as does decimal conversion.
[frac.git] / Makefile
blob5f61db1cdd78294851ad1bdae2288d70e4523f52
1 CF_FILES:=cf.c mobius.c famous.c bihom.c taylor.c
2 TEST_FILES:=$(CF_FILES) test.c
4 target : pi pi2 sqrt2 epow
6 % : %.c $(CF_FILES)
7 #gcc -O3 -std=c99 -Wall -o $@ $^ -lgmp -lpthread
8 gcc -g -std=c99 -Wall -o $@ $^ -lgmp -lpthread
10 test :
11 gcc -g -std=c99 -Wall -o cf_test cf_test.c $(TEST_FILES) -lgmp -lpthread
12 gcc -g -std=c99 -Wall -o famous_test famous_test.c $(TEST_FILES) -lgmp -lpthread
13 gcc -g -std=c99 -Wall -o bihom_test bihom_test.c $(TEST_FILES) -lgmp -lpthread