From: Michael Smith Date: Mon, 27 Mar 2006 23:47:41 +0000 (+0000) Subject: Also copy over XSL stylesheet customization and Makefile.in file. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=af44426d153b880508c892646b365d09ca0c9bb5;p=docbook-dsssl Also copy over XSL stylesheet customization and Makefile.in file. --- diff --git a/contrib/samples/refentry/scmxx/Makefile b/contrib/samples/refentry/scmxx/Makefile index 00de2e786..4579834b0 100644 --- a/contrib/samples/refentry/scmxx/Makefile +++ b/contrib/samples/refentry/scmxx/Makefile @@ -2,17 +2,25 @@ 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 +FILES=scmxx.de.xml scmxx.en.xml scmxx.it.xml scmxx.ru.xml docbook-man-utf8.xsl +SCMXX_MAKEFILE=Makefile.in TMP ?= /tmp SVN=svn SVNFLAGS= +all: $(FILES) scmxx.Makefile.in + $(FILES): (cd $(TMP) \ && $(SVN) $(SVNFLAGS) co $(HOST)/$(BASE)/$(MODULE) $(MODULE)) for file in $(FILES); do cp $(TMP)/$(MODULE)/$$file .; done + cp $(TMP)/$(MODULE)/$(SCMXX_MAKEFILE) . + +scmxx.Makefile.in: $(FILES) + mv $(SCMXX_MAKEFILE) $@ clean: $(RM) $(FILES) + $(RM) scmxx.Makefile.in