%.o : %.f90
	ifort -c $<

hello_world.o : use_mod.o

hello_world.exe : hello_world.o use_mod.o
	ifort hello_world.o use_mod.o -o hello_world.exe

all : hello_world.exe

clean :
	\rm -rf *.o *.mod *~ hello_world.exe
