Skip to content

Commit 4d3b8ee

Browse files
committed
use proper tab characters before target actions
and spaces before inline comments
1 parent 3650419 commit 4d3b8ee

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

Makefile

+15-15
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
# Constants
55

66
DIR = html/
7-
SRC = sicp-pocket.texi # book's Texinfo source
8-
GOAL = ../sicp.epub # the end product of compilation
9-
NEXUS = $(DIR)index.xhtml # the central file with table of contents
10-
META = content.opf toc.xhtml # epub metafiles generated from NEXUS
11-
HTML = $(DIR)*.xhtml # all the HTML files of the book
12-
FIG = $(DIR)fig/*/*.svg # SVG diagrams
13-
CSS = $(DIR)css/*.css # style files
14-
FONT = $(DIR)css/fonts/* # WOFF fonts
15-
JS = $(DIR)js/*.js # javascript libraries
16-
CONV = texi2any lib/Texinfo/Convert/HTML.pm # Texinfo converter scripts
17-
MATH = get-math.js put-math.js mathcell.xhtml # LaTeX -> MathML converter
7+
SRC = sicp-pocket.texi # book's Texinfo source
8+
GOAL = ../sicp.epub # the end product of compilation
9+
NEXUS = $(DIR)index.xhtml # the central file with table of contents
10+
META = content.opf toc.xhtml # epub metafiles generated from NEXUS
11+
HTML = $(DIR)*.xhtml # all the HTML files of the book
12+
FIG = $(DIR)fig/*/*.svg # SVG diagrams
13+
CSS = $(DIR)css/*.css # style files
14+
FONT = $(DIR)css/fonts/* # WOFF fonts
15+
JS = $(DIR)js/*.js # javascript libraries
16+
CONV = texi2any lib/Texinfo/Convert/HTML.pm # Texinfo converter scripts
17+
MATH = get-math.js put-math.js mathcell.xhtml # LaTeX -> MathML converter
1818
HIGHL = $(DIR)js/highlight/
1919
PRETTY = $(HIGHL)prettify.js $(HIGHL)lang-lisp.js batch-prettify.js
2020
COVER = index.in.xhtml $(DIR)fig/coverpage.std.svg $(DIR)fig/bookwheel.jpg
@@ -38,9 +38,9 @@ all: $(GOAL)
3838
done; \
3939
rm $(DIR)*.bak; \
4040
fi; \
41-
perl -0p -i.bak -e \
42-
"s{<!-- Fork me banner -->}{$(GITHUB)}" index.xhtml; \
43-
rm *.bak
41+
perl -0p -i.bak -e \
42+
"s{<!-- Fork me banner -->}{$(GITHUB)}" index.xhtml; \
43+
rm *.bak
4444

4545
html: $(NEXUS)
4646

@@ -99,7 +99,7 @@ $(GOAL): $(META) $(THUMB) $(FIG) $(CSS) $(FONT) mimetype META-INF/* LICENSE
9999
rm $(DIR)*.bak; \
100100
fi; \
101101
zip -0Xq $(GOAL) mimetype; \
102-
cp index.in.xhtml index.xhtml; \
102+
cp index.in.xhtml index.xhtml; \
103103
zip -Xr9Dq $(GOAL) $(META) $(HTML) META-INF/* LICENSE \
104104
index.xhtml $(DIR)css/* $(DIR)fig/* ; \
105105
echo "done."

0 commit comments

Comments
 (0)