diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -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) |