summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordormando <dormando@rydia.net>2016-05-28 17:26:11 -0700
committerdormando <dormando@rydia.net>2016-05-28 17:26:11 -0700
commitadb6a664a62989e5fd4585bb48be5df34a18bf31 (patch)
tree827cafe61e71d9df9493ca9e373291265bbb0a4b
parente7d4521cd8b27f7ebc6e4c1b9aee9eb3544f6af5 (diff)
downloadmemcached-adb6a664a62989e5fd4585bb48be5df34a18bf31.tar.gz
Fix building of documentation files.
Apparently I never tested this back in 2014. The $(.TARGET:R) stuff is being evaluated into nothing on my system and I have no idea where that extension came from... So just type out the file names explicitly.
-rw-r--r--doc/Makefile.am16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 78208b9..484bf9a 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -9,15 +9,15 @@ BUILT_SOURCES += protocol-binary.txt protocol-binary-range.txt
MOSTLYCLEANFILES = protocol-binary.txt protocol-binary-range.txt
endif
-protocol-binary.txt: $(.TARGET:R).full
- @XML2RFC@ -c @abs_builddir@ $(.TARGET:R).full $@
+protocol-binary.txt: protocol-binary.full
+ @XML2RFC@ -c @abs_builddir@ protocol-binary.full $@
-protocol-binary-range.txt: $(.TARGET:R).full
- @XML2RFC@ -c @abs_builddir@ $(.TARGET:R).full $@
+protocol-binary-range.txt: protocol-binary-range.full
+ @XML2RFC@ -c @abs_builddir@ protocol-binary-range.full $@
-protocol-binary.full: $(.TARGET:R).xml xml2rfc/rfc2629-noinc.xsl
- @XSLTPROC@ --nonet xml2rfc/rfc2629-noinc.xsl $(.TARGET:R).xml > $@
+protocol-binary.full: protocol-binary.xml xml2rfc/rfc2629-noinc.xsl
+ @XSLTPROC@ --nonet xml2rfc/rfc2629-noinc.xsl protocol-binary.xml > $@
-protocol-binary-range.full: $(.TARGET:R).xml xml2rfc/rfc2629-noinc.xsl
- @XSLTPROC@ --nonet xml2rfc/rfc2629-noinc.xsl $(.TARGET:R).xml > $@
+protocol-binary-range.full: protocol-binary-range.xml xml2rfc/rfc2629-noinc.xsl
+ @XSLTPROC@ --nonet xml2rfc/rfc2629-noinc.xsl protocol-binary-range.xml > $@