
TOP = ../ggk.top -I ../src/
SED = sed '0,/CUT MARKER/d' 

TST = norm vector point affine hplane orient insphere inside power sphere

all:	$(TST)
	@echo "DONE"

clean:
	rm *out*

%:
	$(TOP) < $@_test.ml > $@_out_all.ml
	$(SED) $@_out_all.ml > $@_out.ml

