summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 15 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7d0d157..7db9cae 100644
--- a/Makefile
+++ b/Makefile
@@ -11,8 +11,13 @@ DESKTOP_SRC=limox.desktop
DESKTOP=$(BUILDDIR)/$(DESKTOP_SRC)
DESKTOP_INSTALL=$(INSTALLATION)/share/applications/$(DESKTOP_SRC)
+IMG_NAMES=session
+IMG_DIR=$(BUILDDIR)/img
+IMGS=$(foreach wrd,$(IMG_NAMES),$(IMG_DIR)/$(wrd).pdf)
-all: $(LIMOX) $(DESKTOP) tests
+
+
+all: $(LIMOX) $(DESKTOP) tests $(IMGS)
$(BUILDDIR):
mkdir $@
@@ -23,8 +28,14 @@ $(LIMOX): $(BUILDDIR) tests
$(DESKTOP): $(BUILDDIR)
cp $(DESKTOP_SRC) $@
+$(IMG_DIR): $(BUILDDIR)
+ mkdir $@
+
+$(IMG_DIR)/%.pdf: img/%.svg $(IMG_DIR)
+ inkscape -o $@ $<
+
-.PHONY: clean debug install tests
+.PHONY: clean debug install tests imgs
clean:
rm -rf $(BUILDDIR)
@@ -38,3 +49,5 @@ install: $(LIMOX)
tests:
go test $(LIMOX_GO_PACKAGE)/...
+
+imgs: $(IMGS)