first Julia set plotted
This commit is contained in:
19
Fraktalism/Makefile
Normal file
19
Fraktalism/Makefile
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
GFOPT = -Wall -Wextra -time -g
|
||||
|
||||
# ---------------------------------------------
|
||||
|
||||
spitpgm.o: spitpgm.f90 Makefile
|
||||
gfortran $(GFOPT) -c $<
|
||||
|
||||
fraktals.o: fraktals.f90 Makefile
|
||||
gfortran $(GFOPT) -c $<
|
||||
|
||||
OBJS = spitpgm.o fraktals.o
|
||||
|
||||
# ---------------------------------------------
|
||||
|
||||
julia: julia.f90 Makefile $(OBJS)
|
||||
gfortran $(GFOPT) $< $(OBJS) -o $@
|
||||
|
||||
# ---------------------------------------------
|
||||
Reference in New Issue
Block a user