CFLAGS=-Wall -O3 -std=c99 
LDFLAGS=-lm

#cercle: cercle.c

plot: cercle
	./cercle
	gnuplot -e 'plot [-130:130] [-130:130] "cordic.dat" with lines;'\
            -e 'replot "cossin.dat" with lines;' \
            -e 'pause -1' 
clean:
	rm *.dat *~ cercle
