From: Michael Smith Date: Mon, 27 Mar 2006 08:02:22 +0000 (+0000) Subject: Added scmxx subdirectory in samples and added a makefile in it X-Git-Tag: release/1.79.1~6^2~2943 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=68098d76a96095417d2ebd5477db65939e1ded4f;p=docbook-dsssl Added scmxx subdirectory in samples and added a makefile in it for getting Hendrik Sattler's scmxx docs. --- diff --git a/contrib/samples/scmxx/Makefile b/contrib/samples/scmxx/Makefile new file mode 100644 index 000000000..00de2e786 --- /dev/null +++ b/contrib/samples/scmxx/Makefile @@ -0,0 +1,18 @@ +HOST=https://svn.sourceforge.net +BASE=svnroot/scmxx/trunk +MODULE=scmxx/docs +TMP_SUBDIR=scmxx +FILES=scmxx.de.xml scmxx.en.xml scmxx.it.xml scmxx.ru.xml + +TMP ?= /tmp + +SVN=svn +SVNFLAGS= + +$(FILES): + (cd $(TMP) \ + && $(SVN) $(SVNFLAGS) co $(HOST)/$(BASE)/$(MODULE) $(MODULE)) + for file in $(FILES); do cp $(TMP)/$(MODULE)/$$file .; done + +clean: + $(RM) $(FILES)