2023-03-04 12:48:05 +01:00
|
|
|
|
|
|
|
INCS = -I/usr/include/plplot -I/usr/lib/x86_64-linux-gnu/fortran/modules/plplot
|
|
|
|
|
|
|
|
plplotting: plplotting.f90 Makefile
|
|
|
|
gfortran -g $< $(INCS) -lplplotfortran -o $@
|
2023-03-07 20:49:36 +01:00
|
|
|
|
|
|
|
dessiner: dessiner.f90 Makefile
|
|
|
|
gfortran -g $< $(INCS) -lplplotfortran -o $@
|
2023-03-21 15:03:09 +01:00
|
|
|
|
|
|
|
|
2023-04-02 23:32:29 +02:00
|
|
|
plot89a.gif: dessiner Makefile
|
2023-03-21 15:03:09 +01:00
|
|
|
rm -f WS/A????.png
|
|
|
|
./dessiner
|
2023-04-02 23:32:29 +02:00
|
|
|
convert -delay 10 -colors 42 WS/A????.png $@
|