EXES=	demo echoing hello_raw_world hello_seq_world hello_world\
	sort_inside sort_pump test_utils

all build: $(EXES)

clean:
	-$(RM) -f $(EXES) *.kt* *.s *.o *.tco *~ core

install test:
	@echo "Nothing to $@"

demo: demo.occ
	kroc $? -L../lib -lcourse

echoing: echoing.occ
	kroc $? -L../lib -lcourse

hello_raw_world: hello_raw_world.occ
	kroc $? -L../lib -lcourse

hello_seq_world: hello_seq_world.occ
	kroc $? -L../lib -lcourse

hello_world: hello_world.occ
	kroc $? -L../lib -lcourse

sort_inside: sort_inside.occ
	kroc $? -L../lib -lcourse

sort_pump: sort_pump.occ
	kroc $? -L../lib -lcourse

test_utils: test_utils.occ
	kroc $? -L../lib -lcourse
