Page MenuHomec4science

Makefile
No OneTemporary

File Metadata

Created
Wed, Aug 14, 20:50

Makefile

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

Event Timeline