masters-thesis/images/Makefile
Dennis af25b4b828 Initial commit of master's thesis
This is the version I submitted to RWTH Aachen University at November 9,
2018.
2018-11-12 12:56:59 +01:00

13 lines
163 B
Makefile

SRCS = $(wildcard *.odg)
PDFS = $(patsubst %.odg,%.pdf,$(SRCS))
all: $(PDFS)
%.pdf: %.odg
libreoffice --convert-to pdf $<
clean:
rm -f *.pdf
.PHONE: clean