X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=wsdl%2FMakefile;h=78dc70d3a595d7808cf2951ebbc102b2688850b6;hb=16c8c088c4af3a872f7950ddc4a7bd3b05ed462b;hp=e5bbab8afa6b713eb22ab14cb2eb17eee58382a3;hpb=82880c26cb63971c469825a182eaed7a9c9a57ff;p=sfa.git diff --git a/wsdl/Makefile b/wsdl/Makefile index e5bbab8a..78dc70d3 100644 --- a/wsdl/Makefile +++ b/wsdl/Makefile @@ -1,21 +1,64 @@ # attempt to update at build-time -SFA := sfa.wsdl -ALL := $(SFA) registry.wsdl slice-manager.wsdl aggregate.wsdl -all: $(SFA) +INTERFACES=sfa registry aggregate -# create missing __init__.py files -../sfa/__init__.py: - make -C .. index +WSDLS = $(foreach interface,$(INTERFACES),$(interface).wsdl) +HTMLS = $(foreach interface,$(INTERFACES),$(interface).html) -registry.wsdl: ../sfa/__init__.py - PYTHONPATH=../ ./gw2wsdl.py --registry > $@ +all: $(WSDLS) $(HTMLS) -slice-manager.wsdl: ../sfa/__init__.py - PYTHONPATH=../ ./gw2wsdl.py --slice-manager > $@ +# temporary: turn off wsdl generation as it is failing +#TEMPORARY_OFF = yes -aggregate.wsdl: ../sfa/__init__.py - PYTHONPATH=../ ./gw2wsdl.py --aggregate > $@ +ifdef TEMPORARY_OFF +registry.wsdl aggregate.wsdl sfa.wsdl: + touch $@ +else +registry.wsdl: sfa2wsdl.py + PYTHONPATH=../ ./sfa2wsdl.py --registry > $@ -sfa.wsdl: ../sfa/__init__.py - PYTHONPATH=../ ./gw2wsdl.py --registry --slice-manager --aggregate > $@ +aggregate.wsdl: sfa2wsdl.py + PYTHONPATH=../ ./sfa2wsdl.py --aggregate > $@ + +sfa.wsdl: sfa2wsdl.py + PYTHONPATH=../ ./sfa2wsdl.py --registry --aggregate > $@ +endif + +#################### install +# DESTDIR set but the calling Makefile in ../ +INSTALL_PATH=/var/www/html/wsdl +INSTALLED=$(foreach wsdl,$(WSDLS),$(DESTDIR)$(INSTALL_PATH)/$(wsdl)) + +install: $(INSTALLED) + +$(DESTDIR)$(INSTALL_PATH): + install -d -m 0755 $(DESTDIR)$(INSTALL_PATH) + +$(DESTDIR)$(INSTALL_PATH)/%: wsdl=$(notdir $@) +$(DESTDIR)$(INSTALL_PATH)/%: $(DESTDIR)$(INSTALL_PATH) % + install -c -m 0755 $(wsdl) $@ + +#################### clean +clean:: + rm -f $(WSDLS) + +install-clean: + rm -f $(INSTALLED) + +.PHONY: all clean install install-clean + +#################### generate html document +%.html: %.wsdl wsdl2html.xsl + xsltproc $(XSLTFLAGS) wsdl2html.xsl $*.wsdl > $@ || rm $@ + +clean:: + rm -f $(HTMLS) + + +backup: + $(foreach wsdl,$(WSDLS), cp $(wsdl) $(wsdl).bak;) + $(foreach html,$(HTMLS), cp $(html) $(html).bak;) + +diff: + $(foreach wsdl,$(WSDLS), diff $(wsdl) $(wsdl).bak;) + $(foreach html,$(HTMLS), diff $(html) $(html).bak;)