]> granicus.if.org Git - docbook-dsssl/commitdiff
Added scmxx subdirectory in samples and added a makefile in it
authorMichael Smith <xmldoc@users.sourceforge.net>
Mon, 27 Mar 2006 08:02:22 +0000 (08:02 +0000)
committerMichael Smith <xmldoc@users.sourceforge.net>
Mon, 27 Mar 2006 08:02:22 +0000 (08:02 +0000)
for getting Hendrik Sattler's scmxx docs.

contrib/samples/scmxx/Makefile [new file with mode: 0644]

diff --git a/contrib/samples/scmxx/Makefile b/contrib/samples/scmxx/Makefile
new file mode 100644 (file)
index 0000000..00de2e7
--- /dev/null
@@ -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)