Page MenuHomec4science

Makefile
No OneTemporary

File Metadata

Created
Sat, Oct 5, 21:50

Makefile

F90=nvfortran
F90FLAGS=-cuda
.PHONY: clean distclean
all: jacobi_cuda.x
jacobi_cuda.x: jacobi_cuda.F90
%.x: %.F90
$(F90) $(F90FLAGS) $< -o $@
distclean: clean
rm *.x
clean:
rm -f *.o *.mod

Event Timeline