CAMLC=camlc

all: colwheel.exe showsort.exe spir.exe

colwheel.exe:
	$(CAMLC) -o colwheel.exe colwheel.ml

showsort.exe:
	$(CAMLC) -o showsort.exe record.ml playback.ml sorts.ml showsort.ml

spir.exe:
 	$(CAMLC) -o spir.exe turtle.mli turtle.ml spir.ml

clean:
	del *.exe
	del *.zo
	del *.zi
