From 273d9f61530abcf2a651939f60c81368c1120401 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Thu, 23 Feb 2017 16:57:37 +0100 Subject: Add EUDAS manuals to library --- Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index b25c021..19bd9a8 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,14 @@ -BUILDDIR=_build -STATICFILES=01_readme_INSTALL.txt releases.svg eumel_logo.svg +BUILDDIR:=_build +STATICFILES:=01_readme_INSTALL.txt releases.svg eumel_logo.svg +TTLFILES:=$(shell find ttl -name '*.ttl' | sort) all: $(BUILDDIR)/index.html links $(BUILDDIR): mkdir -p $(BUILDDIR) -$(BUILDDIR)/index.ttl: $(glob ttl/*.ttl) | $(BUILDDIR) - cat ttl/* > $@ +$(BUILDDIR)/index.ttl: $(TTLFILES) | $(BUILDDIR) + cat $(TTLFILES) > $@ $(BUILDDIR)/bib.rst: $(BUILDDIR)/index.ttl tools/formatRefs.py | $(BUILDDIR) cat $(BUILDDIR)/index.ttl | ./tools/formatRefs.py https://6xq.net/eumel/ | sort -n > $(BUILDDIR)/bib.rst -- cgit v1.2.3