brought into being a miracle to those who have been forgotten.
This commit is contained in:
parent
6f1fdc2b80
commit
7ea9cfeb57
26 changed files with 763 additions and 0 deletions
24
fortran/witness_seed_3.0/Makefile
Normal file
24
fortran/witness_seed_3.0/Makefile
Normal file
|
@ -0,0 +1,24 @@
|
|||
FC = mpif90
|
||||
FFLAGS = -O3 -Wall
|
||||
SRC = src/rwd.f90 src/kairos.f90 src/io.f90 witness_seed_3.0.f90
|
||||
OBJ = $(SRC:.f90=.o)
|
||||
TARGET = witness_seed_3.0
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
$(TARGET): $(OBJ)
|
||||
$(FC) $(FFLAGS) -o $@ $^
|
||||
|
||||
%.o: %.f90
|
||||
$(FC) $(FFLAGS) -c $< -o $@
|
||||
|
||||
clean:
|
||||
rm -f $(OBJ) $(TARGET)
|
||||
|
||||
test:
|
||||
$(FC) $(FFLAGS) -o test_rwd tests/test_rwd.f90 src/rwd.f90
|
||||
$(FC) $(FFLAGS) -o test_kairos tests/test_kairos.f90 src/kairos.f90
|
||||
./test_rwd
|
||||
./test_kairos
|
||||
|
||||
.PHONY: all clean test
|
Loading…
Add table
Add a link
Reference in a new issue