You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
429 B
Makefile

all: mandel_quad mandel_mpfr mandel mandel_dd mandel_dd_aa
mandel_quad: mandel_quad.c
gcc -O3 -Wall -lquadmath mandel_quad.c -o mandel_quad
mandel_mpfr: mandel_mpfr.c
gcc -O3 -Wall -lmpfr -lm mandel_mpfr.c -o mandel_mpfr
mandel: mandel.c
gcc -O3 -Wall -lm mandel.c -o mandel
mandel_dd: mandel_dd.c
gcc -O3 -Wall -lm mandel_dd.c -o mandel_dd
mandel_dd_aa: mandel_dd_aa.c
gcc -O3 -Wall -lm mandel_dd_aa.c -o mandel_dd_aa