EXES=hello

all: test

build: test

test: $(EXES)

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

install:
	@echo "Nothing to install"

hello: hello.occ
	kroc $?
