the start of a new adventure
This commit is contained in:
19
Makefile
Normal file
19
Makefile
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
all: spirale.png
|
||||
|
||||
# -----------------------------------------------
|
||||
|
||||
genplotting.o: genplotting.f90 Makefile
|
||||
gfortran -Wall -c $<
|
||||
|
||||
# -----------------------------------------------
|
||||
|
||||
spirale: spirale.f90 Makefile genplotting.o
|
||||
gfortran -Wall $< genplotting.o -o $@
|
||||
|
||||
spirale.png: spirale Makefile
|
||||
./spirale > s.scratch
|
||||
genplot2 -s 512x512 s.scratch a.tga
|
||||
convert a.tga $@
|
||||
|
||||
# -----------------------------------------------
|
||||
Reference in New Issue
Block a user