SHELL = /bin/sh

.PHONY: all clean

all:
	ln -fs ../b91enc b91enc
	ln -fs ../b91enc b91dec
	$(SHELL) test.sh

clean:
	-rm -f b91??c *.b91 *.dat core
