From fea5d39b3e0eae0645fda969e06606b78241d5ca Mon Sep 17 00:00:00 2001
From: Christian Krause <christian.krause@mailbox.org>
Date: Wed, 4 Dec 2019 10:45:13 +0100
Subject: [PATCH] adds section headers to Makefile

improves readability
---
 Makefile | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/Makefile b/Makefile
index 533eb73..1020fc0 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,16 @@
+# -----------------------------------------------------------------------------
+# settings
+# -----------------------------------------------------------------------------
+
 # do not use spaces here, instead use either
 # - dashes, as in my-awesome-title, or
 # - underscores, as in my_awesome_title
 TITLE = title
 
+# -----------------------------------------------------------------------------
+# pandoc configuration
+# -----------------------------------------------------------------------------
+
 PANDOC = pandoc
 
 PANDOCFLAGS = \
@@ -11,9 +19,17 @@ PANDOCFLAGS = \
 	--filter pandoc-citeproc \
 	--pdf-engine=xelatex \
 
+# -----------------------------------------------------------------------------
+# sources
+# -----------------------------------------------------------------------------
+
 SOURCES_CSV = $(wildcard *.csv)
 SOURCES_MD = $(sort $(wildcard chapter-*.md))
 
+# -----------------------------------------------------------------------------
+# targets
+# -----------------------------------------------------------------------------
+
 default: all
 
 all: $(TITLE).pdf
-- 
GitLab