aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMohit Agarwal <mohit.agarwal@sky.com>2024-12-12 19:45:56 +0000
committerMohit Agarwal <mohit.agarwal@sky.com>2024-12-12 19:45:56 +0000
commit26d81bd74763b2a3f383ac15e5d19f40e7e44fbf (patch)
treeaa8e9632868c048e54e337fa1397a004e83c3866 /Makefile
parentd352671447f09659ea88a5e15d441ae59c503d4a (diff)
Build working.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 088fd81..027b87a 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ TARGETS=$(SOURCES:%.md=target/%.tex)
default: target/ \
target/Makefile \
target/the-fresh-loaf.tex \
- $(TARGETS) include.tex
+ $(TARGETS) include.tex
target/:
mkdir target
@@ -15,7 +15,7 @@ target/Makefile: TexMakefile
target/%.tex: %.md
pandoc --top-level-division=chapter $^ -o $@
include.tex:
- rm target/include.tex
+ rm target/include.tex || echo
touch target/include.tex
for f in $(SOURCES:%.md=%);\
do echo \\include{$$f} >> target/include.tex;\