X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;ds=sidebyside;f=Makefile;h=4a9bb40e520bee16ce073022b723444c92371157;hb=6abee913e85e5f9ab983342c7b304069ab8fe00f;hp=2c9e9b5c9484b8820e53f5188aabb357af9258ac;hpb=cb0bae954e7dd0067e77c436c78ee19ace52d9e3;p=org.ibex.classgen.git diff --git a/Makefile b/Makefile index 2c9e9b5..4a9bb40 100644 --- a/Makefile +++ b/Makefile @@ -10,11 +10,18 @@ $(classes): $(sources) $(JAVAC) -d build $(sources) test: $(classes) - java -cp build org.ibex.classgen.ClassGen + java -cp build org.ibex.classgen.ClassFile clean: rm -rf build/* +.PHONY: doc +doc: doc/index.html + +doc/index.html: $(sources) src/org/ibex/classgen/package.html + mkdir -p doc + javadoc -d doc $(sources) + sizecheck: @for c in $(jar_classes); do \ for f in `echo $$c|sed 's,\.class$$,,;'`*.class; do gzip -c $$f; done | wc -c | tr -d '\n'; \