# Makefile for spmodel library

include ../Config.mk

SUBDIRS=ae_module at_module ee_module eigmatrix esc_module et_module \
	lumatrix wa_module wt_module

clean: clean.local clean.subdirs

clean.subdirs:
	@for i in $(SUBDIRS) ; do \
	  cd $$i ; $(MAKE) clean ; \
	  cd ../ ; \
	done

clean.local:
	-rm -f $(MODS) *.o work.pc* *~ *.bak *.out *.nc
