qbe

Internal scc patchset buffer for QBE
Log | Files | Refs | README | LICENSE

commit b3ec80d3d70945106b5d537e8fd99c4a0753df89
parent 98c36c285008aed8f467293da993f859d18e1f2d
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date:   Tue,  8 Mar 2016 21:23:48 -0500

oops, fix quotes in Makefile

Diffstat:
Mdoc/Makefile | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git 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; \