aboutsummaryrefslogtreecommitdiffstats
path: root/ninja/rules.ninja
diff options
context:
space:
mode:
Diffstat (limited to 'ninja/rules.ninja')
-rw-r--r--ninja/rules.ninja11
1 files changed, 11 insertions, 0 deletions
diff --git a/ninja/rules.ninja b/ninja/rules.ninja
new file mode 100644
index 0000000..3e67144
--- /dev/null
+++ b/ninja/rules.ninja
@@ -0,0 +1,11 @@
+rule mkdir
+ command = mkdir -p $out
+ description = Creating directory $out
+
+rule pdf
+ command = pandoc -f markdown $in -t latex --latex-engine=xelatex -o $out
+ description = Building pdf $out
+
+rule html
+ command = pandoc -f markdown $in -t html --ascii -o $out
+ description = Building html $out