# Start of the makefile
# Defining variables
PROG =	gather.exe
SRCS =	gather.f90 
OBJS =	gather.o
F90COMP = gfortran
# Makefile
$(PROG): $(OBJS)
	$(F90COMP) -o $(PROG) $(OBJS)
gather.o: gather.f90
	$(F90COMP) -c gather.f90
clean:
	rm -f $(PROG) $(OBJS) *.mod
# End of the makefile
