Select Git revision
Forked from
Scientific Computing / education / git-seminar
63 commits behind the upstream repository.
ck85nori authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Makefile 413 B
SUBDIRS = \
img
$(SUBDIRS):
$(MAKE) -C $@
pandoc-papers.pdf: pandoc-papers.md
pandoc \
-V aspectratio=169 \
-V institute=iDiv \
-V theme=Frankfurt \
-V navigation=horizontal \
-s paper.md -t beamer -o pandoc-papers.pdf
all: subdirs
clean:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir $@; \
done
default: all
subdirs: $(SUBDIRS)
.PHONY: \
$(SUBDIRS) \
all \
clean \
default \
subdirs