Skip to content
Snippets Groups Projects
Unverified Commit fea5d39b authored by ck85nori's avatar ck85nori :railway_track:
Browse files

adds section headers to Makefile

improves readability
parent 92c9e810
Branches
No related tags found
No related merge requests found
# -----------------------------------------------------------------------------
# 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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment