Page MenuHomec4science

Makefile
No OneTemporary

File Metadata

Created
Thu, Nov 28, 22:13

Makefile

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

Event Timeline