X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=wsdl%2FMakefile;h=c24b1e1adb0037d6664e156b4b23c8829e42da5d;hb=c13faf4221c5b756fc3cfe4eccd1b2df65f5c4be;hp=e503449c06d491fbb37d2264d35a11310443423d;hpb=d4c78267493e3399f420184416e9574c5e5f5f46;p=sfa.git diff --git a/wsdl/Makefile b/wsdl/Makefile index e503449c..c24b1e1a 100644 --- a/wsdl/Makefile +++ b/wsdl/Makefile @@ -43,7 +43,7 @@ $(DESTDIR)$(INSTALL_PATH)/%: $(DESTDIR)$(INSTALL_PATH) % #################### clean clean:: - rm -f *wsdl + rm -f $(WSDLS) install-clean: rm -f $(INSTALLED) @@ -55,5 +55,13 @@ install-clean: xsltproc $(XSLTFLAGS) wsdl2html.xsl $*.wsdl > $@ || rm $@ clean:: - rm -f *.html + 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;)