Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
2016-09-04 16:47:59 +02:00

17 lines
262 B
Makefile

SRCDIR=.
BUILDDIR=../graph_templates
SRC=$(wildcard $(SRCDIR)/*.xml)
BUILD=$(SRC:$(SRCDIR)/%.xml=$(BUILDDIR)/%.xml)
all: templates
templates: $(BUILD)
$(BUILDDIR)/%.xml: $(SRCDIR)/%.xml
xmllint -format -xinclude -o $@ $<
.PHONY: clean
clean:
-rm $(BUILD)