mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
51 lines
1.6 KiB
Makefile
51 lines
1.6 KiB
Makefile
DEPTH = ../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MOZILLA_INTERNAL_API = 1
|
|
NEED_MDDEPDIR = 1
|
|
|
|
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: $(MDDEPDIR)
|
|
$(CCC) $(OUTOPTION)/dev/null -c $(COMPILE_CXXFLAGS) $(srcdir)/type-printer.cpp >classapi.out 2>&1
|
|
perl -e 'while (<>) {if (/DUMP-TYPE\((.*)\)/) {print "$$1 ";}}' <classapi.out >dumptypes.list
|
|
perl -e 'while (<>) {if (/GRAPH-TYPE\((.*)\)/) {print "$$1 ";}}' <classapi.out >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
|