
RM = \rm -f

# Note that running these tests requires a local installation
# of TESS, the (Te)st (S)ystem for (S)-Lang

test:
	tessrun $(SWITCHES) $(TEST_APP) > test.out 2>&1
	diff test.ref test.out 

clean:
	$(RM) *~ test.out

distclean: clean
