
all: clean run

run:
	../../bin/gnatdoc test.gpr
	test -d .docs

clean:
	rm -rf .objs
	rm -rf .docs
