-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.ninja
149 lines (111 loc) · 6.46 KB
/
build.ninja
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# Ninja file generated by bang (https://cdelord.fr/bang)
# bang build.lua -o build.ninja
# Fizzbuzz build system
#
# Targets:
# help show this help message
# all compile, test and document FizzBuzz
# clean clean generated files
ninja_required_version = 1.11.1
######################################################################
# Project directories
######################################################################
builddir = .build
img = img
######################################################################
# Help
######################################################################
######################################################################
# Tests
######################################################################
rule run_test
command = $in 50 > $out
######################################################################
# Lua test
######################################################################
rule _builddir_tests_fizzbuzz_lua
command = luax compile -q -o $out $in
build $builddir/tests/fizzbuzz_lua: _builddir_tests_fizzbuzz_lua fizzbuzz.lua
build $builddir/tests/fizzbuzz_lua.txt: run_test $builddir/tests/fizzbuzz_lua
######################################################################
# C test
######################################################################
rule _builddir_tests_fizzbuzz_c
command = gcc $in -o $out
build $builddir/tests/fizzbuzz_c: _builddir_tests_fizzbuzz_c fizzbuzz.c
build $builddir/tests/fizzbuzz_c.txt: run_test $builddir/tests/fizzbuzz_c
######################################################################
# Haskell test
######################################################################
rule _builddir_tests_fizzbuzz_hs
command = ghc -outputdir ${out}_tmp $in -o $out
build $builddir/tests/fizzbuzz_hs: _builddir_tests_fizzbuzz_hs fizzbuzz.hs
build $builddir/tests/fizzbuzz_hs.txt: run_test $builddir/tests/fizzbuzz_hs
######################################################################
# Test results
######################################################################
rule check
command = luax $in 50 > $out
build $builddir/tests/result_lua.lua: check fizzbuzz_test.lua $builddir/tests/fizzbuzz_lua.txt
build $builddir/tests/result_c.lua: check fizzbuzz_test.lua $builddir/tests/fizzbuzz_c.txt
build $builddir/tests/result_hs.lua: check fizzbuzz_test.lua $builddir/tests/fizzbuzz_hs.txt
######################################################################
# Documentation
######################################################################
rule ypp
command = export LUA_PATH="$builddir/tests/?.lua;./?.lua"; export REQDB="$builddir/reqdb.lua"; export REQTARGET="fizzbuzz.pdf"; ypp -p . -l project_data -l req --MD --MF $depfile $in -o $out
depfile = $builddir/dependencies/$out.d
rule panda_html
command = export LUA_PATH="$builddir/tests/?.lua;./?.lua"; export REQDB="$builddir/reqdb.lua"; export REQTARGET="fizzbuzz.pdf"; export PANDA_TARGET=$out; export PANDA_DEP_FILE=$depfile; export LOGO=$logo_html; export PANDOC_USER_DATA_DIRECTORY=`pandoc -v | awk -F': *' '$$1=="User data directory" {print $$2}'`; panda --table-of-content --to html5 --embed-resources --standalone --mathml $in -o $out
depfile = $builddir/dependencies/$out.d
rule panda_pdf
command = export LUA_PATH="$builddir/tests/?.lua;./?.lua"; export REQDB="$builddir/reqdb.lua"; export REQTARGET="fizzbuzz.pdf"; export PANDA_TARGET=$out; export PANDA_DEP_FILE=$depfile; export LOGO=$logo_pdf; panda --table-of-content --number-sections --highlight-style tango --top-level-division=chapter $in -o $out
depfile = $builddir/dependencies/$out.d
rule panda_gfm
command = export LUA_PATH="$builddir/tests/?.lua;./?.lua"; export REQDB="$builddir/reqdb.lua"; export REQTARGET="fizzbuzz.pdf"; export PANDA_TARGET=$out; export PANDA_DEP_FILE=$depfile; export LOGO=$logo_html; panda --table-of-content --to gfm --number-sections --highlight-style tango --top-level-division=chapter $in -o $out
depfile = $builddir/dependencies/$out.d
rule panda_beamer
command = export LUA_PATH="$builddir/tests/?.lua;./?.lua"; export REQDB="$builddir/reqdb.lua"; export REQTARGET="fizzbuzz.pdf"; export PANDA_TARGET=$out; export PANDA_DEP_FILE=$depfile; export LOGO=$logo_pdf; panda --to beamer -V theme:Madrid -V colortheme:default $in -o $out
depfile = $builddir/dependencies/$out.d
logo_pdf = $builddir/logo.pdf
logo_html = $img/logo.svg
rule lsvg
command = lsvg $in -o $out --MF $depfile
depfile = $builddir/$out.d
build $logo_pdf: lsvg logo.lua
build $logo_html: lsvg logo.lua
build $builddir/fizzbuzz.md: ypp fizzbuzz.md | $builddir/tests/result_lua.lua $builddir/tests/result_c.lua $builddir/tests/result_hs.lua
build $builddir/fizzbuzz.html: panda_html $builddir/fizzbuzz.md | $logo_html
build $builddir/fizzbuzz.pdf: panda_pdf $builddir/fizzbuzz.md | $logo_pdf
build README.md: panda_gfm $builddir/fizzbuzz.md | $logo_html
build $builddir/fizzbuzz_slideshow.md: ypp fizzbuzz_slideshow.md
build $builddir/fizzbuzz_slideshow.pdf: panda_beamer $builddir/fizzbuzz_slideshow.md | $logo_pdf
build all: phony $builddir/tests/fizzbuzz_lua $builddir/tests/fizzbuzz_lua.txt $builddir/tests/fizzbuzz_c $builddir/tests/fizzbuzz_c.txt $builddir/tests/fizzbuzz_hs $builddir/tests/fizzbuzz_hs.txt $builddir/tests/result_lua.lua $builddir/tests/result_c.lua $builddir/tests/result_hs.lua $logo_pdf $logo_html $builddir/fizzbuzz.html $builddir/fizzbuzz.pdf README.md $builddir/fizzbuzz_slideshow.pdf
default all
######################################################################
# Clean
######################################################################
rule clean-_builddir
description = CLEAN $builddir
command = rm -rf $builddir/*
build clean-_builddir: clean-_builddir
build clean: phony clean-_builddir
######################################################################
# Help
######################################################################
rule help
description = help
command = echo "Fizzbuzz build system"; $
echo ""; $
echo "Targets:"; $
echo " help show this help message"; $
echo " all compile, test and document FizzBuzz"; $
echo " clean clean generated files"
build help: help
######################################################################
# Regenerate build.ninja when build.lua changes
######################################################################
rule bang
command = bang $in -o $out
generator = true
build build.ninja: bang build.lua | ./test_config.lua