#!Makefile
include ../Mkinclude

LIBNM	= stpk
SRC	= matrix_test.f90 thermo.f90
TARGET	= matrix_test thermo

all: $(TARGET)
$(TARGET): %:%.f90
	$(FC) ${FFLAGS} -I${INCDIR} $< -L${LDFLAGS} -l${LFLAGS} -L${LIBDIR} -l${LIBNM} -o $@

clean:
	rm -rf $(TARGET)
