warning:
	@echo "First install Numerical; see README"
	@echo "make all will install other packages but requires"
	@echo "that the desired python heads your path."
	@echo "Currently that is:"
	@which python

all: MA RNG FFT LALITE RANLIB

MA RNG FFT LALITE RANLIB:
	(cd Packages/$@; python setup.py install)

clean:
	/bin/rm -fr Packages/*/build build dist

