13 lines
163 B
Makefile
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
|