diff --git a/report/Makefile b/report/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..d7310eef917e24f86b8d54ea87f9aeeab3648ed4 --- /dev/null +++ b/report/Makefile @@ -0,0 +1,22 @@ +PDFOPTIONS = --highlight-style kate +PDFOPTIONS += --pdf-engine xelatex +PDFOPTIONS += --number-sections +PDFOPTIONS += --listings + +TARGET := IA_alkheja_myaz_saroukhanian.pdf + +MD := report.md + +all: $(TARGET) + +$(TARGET): $(MD) + pandoc -s $^ -o $@ $(OPTIONS) $(PDFOPTIONS) + +.PHONY: clean + +clean: + rm -f *.pdf + +.PHONY: rebuild + +rebuild: clean all