a.out: main.o adjust.o hello.o
	ifort main.o adjust.o hello.o
main.o: main.f90
	ifort -c main.f90
adjust.o: adjust.f90 common.mod
	ifort -c adjust.f90
hello.o: hello.f90 common.mod
	ifort -c hello.f90
common.mod: common.f90
	ifort -c common.f90
clean:
	rm -rf a.out *.o
	rm -rf common.mod
