diff -r 000000000000 -r 6474c204b198 xpcom/analysis/Makefile.in --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xpcom/analysis/Makefile.in Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,44 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +include $(topsrcdir)/config/rules.mk + +DUMP_CLASSES = \ + nsAString_internal \ + nsACString_internal \ + $(NULL) + +SPACE = $(NULL) $(NULL) +COMMA = , + +HGREV = $(shell hg -R $(topsrcdir) id -i) + +classapi: DEHYDRA_MODULES = $(srcdir)/type-printer.js +classapi: TREEHYDRA_MODULES = +classapi: DEHYDRA_ARGS += --dump-types=$(subst $(SPACE),$(COMMA),$(strip $(DUMP_CLASSES))) --rev=$(HGREV) +classapi: $(call mkdir_deps,$(MDDEPDIR)) + $(CCC) $(OUTOPTION)/dev/null -c $(COMPILE_CXXFLAGS) $(srcdir)/type-printer.cpp >classapi.out 2>&1 + perl -e 'while (<>) {if (/DUMP-TYPE\((.*)\)/) {print "$$1 ";}}' dumptypes.list + perl -e 'while (<>) {if (/GRAPH-TYPE\((.*)\)/) {print "$$1 ";}}' graphtypes.list + $(EXIT_ON_ERROR) \ + for class in `cat graphtypes.list`; do \ + dot -Tpng -o$${class}-graph.png -Tcmapx -o$${class}-graph.map $${class}-graph.gv; \ + done + $(EXIT_ON_ERROR) \ + for class in `cat dumptypes.list`; do \ + $(PYTHON) $(srcdir)/fix-srcrefs.py $(topsrcdir) < $${class}.html > $${class}-fixed.html; \ + done + +upload_classapi: + $(EXIT_ON_ERROR) \ + for class in `cat dumptypes.list`; do \ + $(PYTHON) $(srcdir)/MDC-upload.py $${class}-fixed.html en/$${class}; \ + done + $(EXIT_ON_ERROR) \ + for class in `cat graphtypes.list`; do \ + $(PYTHON) $(srcdir)/MDC-attach.py $${class}-graph.png en/$${class} image/png 'Class inheritance graph'; \ + done + +GARBAGE += $(wildcard *.html) $(wildcard *.png) $(wildcard *.map) \ + $(wildcard *.gv) classapi.out graphtypes.list dumptypes.list