From 5573fb6636d2e737a5dfa9c547d6714b196e0d6e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20Sch=C3=A4rtl?= <andreas@schaertl.me>
Date: Thu, 30 Jul 2020 09:17:43 +0200
Subject: [PATCH] Makefile: use wildcard to get *tex files

---
 doc/report/Makefile | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/doc/report/Makefile b/doc/report/Makefile
index f7218f4..187a519 100644
--- a/doc/report/Makefile
+++ b/doc/report/Makefile
@@ -1,11 +1,9 @@
-TEX_SOURCES = report.tex abstract.tex intro.tex \
-    endpoints.tex applications.tex conclusion.tex \
-    applications-ulo-table.tex collecter.tex
+TEX_SOURCES = $(wildcard *.tex)
 
 report.pdf: $(TEX_SOURCES) references.bib
-	pdflatex $<
-	biber $(basename $<)
-	pdflatex $<
+	pdflatex report.tex
+	biber report
+	pdflatex report.tex
 
 view: report.pdf
 	mupdf $<
-- 
GitLab