all: 
	@echo "#** read INSTALL for information on installation"

scheme:
	make the_microcode
	make bins
	make bands

the_microcode: microcode/config.h
	cd microcode;make all

microcode/config.h: microcode/config.dst
	cd microcode;cp config.dst config.h

bins:
	cd psb;csh -fs <../make_bins

bands:
	cd bin;../microcode/scheme -fasl runmd.bin <../band.scm

source_list: .
	rm -f source_list
	(ls -d *; ls microcode/M*.* microcode/*.com microcode/*.[ch]; \
	ls scm/*.scm.* psb/*.psb.*) > source_list

tape:
	tar -cvhl *
