
.SILENT:

RM = rm -f

# Define compiler flags from machine dependent make.inc.

# Define main routine.
include ../../configure/make.inc
CMD=	../../../exe/reform.x	
SRC=    variables.f90 constants.f90 TQadj.f90   thetae.f90   reform.f90 
################################################################################
$(CMD):	$(SRC)
	$(FC) $(SRC) -o $@
	$(RM) *.o *.mod
exe:	$(CMD)
