summary refs log tree commit diff
path: root/doc/Makefile
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-03-08 21:23:48 -0500
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-03-08 21:23:48 -0500
commitb3ec80d3d70945106b5d537e8fd99c4a0753df89 (patch)
tree4501e67d4eae378279b24a5dac1d8a57f5003f6f /doc/Makefile
parent98c36c285008aed8f467293da993f859d18e1f2d (diff)
downloadroux-b3ec80d3d70945106b5d537e8fd99c4a0753df89.tar.gz
oops, fix quotes in Makefile
Diffstat (limited to 'doc/Makefile')
-rw-r--r--doc/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/Makefile b/doc/Makefile
index d5a37da..75fc6e6 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -7,8 +7,10 @@ clean:
 
 html/%.html: %.txt
 	mkdir html 2> /dev/null || true
-	( echo "<!doctype html>"; \
-	  echo "<link rel="stylesheet" href="http://c9x.me/css/simple.css" type="text/css" />"; \
+	( echo '<!doctype html>'; \
+	  echo '<link rel="stylesheet"' \
+	  	'href="http://c9x.me/css/simple.css"' \
+	  	'type="text/css" />'; \
 	  echo '<div class="container">'; \
 	  sed -ne '2{s,.*,<h2>&</h2>,;p;q}' $<; \
 	  sed -e '1,3d' $< | ocaml txt.ml; \