-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
94 lines (82 loc) · 3.4 KB
/
Makefile
File metadata and controls
94 lines (82 loc) · 3.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
all:
${MAKE} clean
${MAKE} stead3
${MAKE} modules
${MAKE} metaparser
dark:
${MAKE} clean
${MAKE} stead3-dark
${MAKE} modules-dark
${MAKE} metaparser-dark
gurochan:
${MAKE} clean
${MAKE} stead3-gurochan
${MAKE} modules-gurochan
${MAKE} metaparser-gurochan
stead3:
wget https://raw.githubusercontent.com/instead-hub/instead/master/doc/stead3-ru.md
cat stead3-metadata.md > stead3.md
cat stead3-ru.md >> stead3.md
rm stead3-ru.md
pandoc -f markdown-raw_tex -css style.css -s --toc ./stead3.md -H style.html -B header.html -A footer.html -o ./stead3.html
rm stead3.md
modules:
wget https://raw.githubusercontent.com/instead-hub/instead/master/doc/modules3-ru.md
cat modules-metadata.md > modules.md
cat modules3-ru.md >> modules.md
rm modules3-ru.md
pandoc -f markdown-raw_tex -css style.css -s --toc ./modules.md -H style.html -B header.html -A footer.html -o ./modules.html
rm modules.md
metaparser:
wget https://raw.githubusercontent.com/instead-hub/metaparser/master/doc/manual-ru.md
cat metaparser-metadata.md > metaparser.md
cat manual-ru.md >> metaparser.md
rm manual-ru.md
pandoc -f markdown-raw_tex -css style.css -s --toc ./metaparser.md --highlight-style pygments -H style.html -B header.html -A footer.html -o ./metaparser.html
rm metaparser.md
stead3-dark:
wget https://raw.githubusercontent.com/instead-hub/instead/master/doc/stead3-ru.md
cat stead3-metadata.md > stead3.md
cat stead3-ru.md >> stead3.md
rm stead3-ru.md
pandoc -f markdown-raw_tex -css style.css -s --toc ./stead3.md -H style_dark.html -B header.html -A footer.html -o ./stead3.html
rm stead3.md
modules-dark:
wget https://raw.githubusercontent.com/instead-hub/instead/master/doc/modules3-ru.md
cat modules-metadata.md > modules.md
cat modules3-ru.md >> modules.md
rm modules3-ru.md
pandoc -f markdown-raw_tex -css style.css -s --toc ./modules.md -H style_dark.html -B header.html -A footer.html -o ./modules.html
rm modules.md
metaparser-dark:
wget https://raw.githubusercontent.com/instead-hub/metaparser/master/doc/manual-ru.md
cat metaparser-metadata.md > metaparser.md
cat manual-ru.md >> metaparser.md
rm manual-ru.md
pandoc -f markdown-raw_tex -css style.css -s --toc ./metaparser.md --highlight-style pygments -H style_dark.html -B header.html -A footer.html -o ./metaparser.html
rm metaparser.md
stead3-gurochan:
wget https://raw.githubusercontent.com/instead-hub/instead/master/doc/stead3-ru.md
cat stead3-metadata.md > stead3.md
cat stead3-ru.md >> stead3.md
rm stead3-ru.md
pandoc -f markdown-raw_tex -css style.css -s --toc ./stead3.md -H style_gurochan.html -B header.html -A footer.html -o ./stead3.html
rm stead3.md
modules-gurochan:
wget https://raw.githubusercontent.com/instead-hub/instead/master/doc/modules3-ru.md
cat modules-metadata.md > modules.md
cat modules3-ru.md >> modules.md
rm modules3-ru.md
pandoc -f markdown-raw_tex -css style.css -s --toc ./modules.md -H style_gurochan.html -B header.html -A footer.html -o ./modules.html
rm modules.md
metaparser-gurochan:
wget https://raw.githubusercontent.com/instead-hub/metaparser/master/doc/manual-ru.md
cat metaparser-metadata.md > metaparser.md
cat manual-ru.md >> metaparser.md
rm manual-ru.md
pandoc -f markdown-raw_tex -css style.css -s --toc ./metaparser.md --highlight-style pygments -H style_gurochan.html -B header.html -A footer.html -o ./metaparser.html
rm metaparser.md
clean:
rm -f stead3.html
rm -f modules.html
rm -f metaparser.html