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