.PHONY: clean

include ../config.h

all: amodule.o

amodule.o: amodule.f90
	$(FC) -c $< -o $@

clean:
	-rm -f *.o *.mod *~