Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/notes/output
presentation/build
21 changes: 21 additions & 0 deletions presentation/makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Makefile to build the LaTeX Git Presentation
#
# Naoki Pross - 2019/10/30

SOURCE := presentation.tex
OUTPUT := $(patsubst %.tex, %.pdf, $(SOURCE))
OUTDIR := build

TEX := xelatex
TEXARGS := --interaction=nonstopmode --output-directory $(OUTDIR) --8bit

all: $(OUTPUT)

$(OUTDIR):
mkdir $@

%.pdf: %.tex $(OUTDIR)
@echo "Compiling $<"
$(TEX) $(TEXARGS) $<
@echo "Copying"
cp -u $(OUTDIR)/$@ ./
Binary file added presentation/presentation.pdf
Binary file not shown.
Loading