EXES=demo sort_inside sort_pump test_io

all: test

build: test

test: $(EXES)

clean:
	-$(RM) $(EXES) *.t *.s *.o *.tco *~

install:
	@echo "Nothing to install"

demo: demo.occ
	kroc $? ../exlibs/libex.a

sort_inside: sort_inside.occ
	kroc $? ../exlibs/libex.a

sort_pump: sort_pump.occ
	kroc $? ../exlibs/libex.a

test_io: test_io.occ
	kroc $? ../exlibs/libex.a
