From 54a031031850d9dff39853f0e2ea3fe849e83a46 Mon Sep 17 00:00:00 2001
From: "iliya.saroukha" <iliya.saroukhanian@etu.hesge.ch>
Date: Wed, 29 May 2024 16:12:15 +0200
Subject: [PATCH] fix: added makefile for compiling report

---
 report/Makefile | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 report/Makefile

diff --git a/report/Makefile b/report/Makefile
new file mode 100644
index 0000000..d7310ee
--- /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
-- 
GitLab