
SHELL = /bin/sh
RM = \rm -f

APP = slsh --init setup.sl

OUTPUT_GIFS = write.gif testanim.gif
TESTS = read.sl write.sl anim.sl reflect.sl

test:
	@for t in $(TESTS) ; do \
	   echo $(APP) $$t ; \
	   $(APP) $$t ; \
	done

clean:
	$(RM) *~ $(OUTPUT_GIFS)

distclean:
