16 lines
308 B
Makefile
16 lines
308 B
Makefile
#
|
|
# Fortraneries by tTh - Graf Anim
|
|
#
|
|
|
|
GFOPT = -Wall -Wextra -g -time
|
|
|
|
essai: essai.f90 usegenplot.o Makefile
|
|
gfortran $(GFOPT) $< usegenplot.o -o $@
|
|
|
|
doubledice: doubledice.f90 usegenplot.o Makefile
|
|
gfortran $(GFOPT) $< usegenplot.o -o $@
|
|
|
|
usegenplot.o: usegenplot.f90 Makefile
|
|
gfortran $(GFOPT) -c $<
|
|
|