# Makefile

ana : problem.c Parameters.c tools.c
	cc -O3 -std=c99 problem.c Parameters.c tools.c -lm -o calc

clean:
	rm -rf *.ascii calc slurm*
