
.PHONY: all
all:
# test background substraction for diffractograms
	./tst.bash
# idem for JPC atd experiments
	./fond.sh

# a prototype used to option -d code in smo (just a memo)
optd: optd.pas
	fpc -gl optd
	./optd "10 3.0" < tst.dat > optd.out

.PHONY: clean
clean:
	rm -f *~ *.xy *.o *.ppu

.PHONY: distclean
distclean: clean
	rm -f optd adhoc
