Page MenuHomec4science

Makefile
No OneTemporary

File Metadata

Created
Thu, Jun 19, 13:57

Makefile

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

Event Timeline