MOCCA-TP3-2020: Makefile

File Makefile, 254 bytes (added by franck, 4 years ago)

Complilation et exécution de cecle

Line 
1CFLAGS=-Wall -O3 -std=c99
2LDFLAGS=-lm
3
4#cercle: cercle.c
5
6plot: cercle
7        ./cercle
8        gnuplot -e 'plot [-130:130] [-130:130] "cordic.dat" with lines;'\
9            -e 'replot "cossin.dat" with lines;' \
10            -e 'pause -1' 
11clean:
12        rm *.dat *~ cercle