2022-03-08 20:36:32 +11:00
|
|
|
#
|
|
|
|
# compiling fraktalism's modules
|
|
|
|
#
|
|
|
|
|
|
|
|
GFOPT = -Wall -Wextra -time -g
|
|
|
|
|
2022-12-17 20:35:44 +11:00
|
|
|
all: xperiment.o points3d.o
|
|
|
|
|
2022-03-08 20:36:32 +11:00
|
|
|
points3d.o: points3d.f90 Makefile
|
|
|
|
gfortran $(GFOPT) -c $<
|
|
|
|
|
2022-12-17 20:35:44 +11:00
|
|
|
xperiment.o: xperiment.f90 Makefile
|
|
|
|
gfortran $(GFOPT) -c $<
|