This commit is contained in:
2018-12-11 10:48:20 +01:00
parent fc9bea161b
commit 8524a0dbe3
104 changed files with 19482 additions and 0 deletions

22
img/organigram/Makefile Normal file
View File

@@ -0,0 +1,22 @@
BASES = en/organisation es/organizacion de/organisation
EXTS = eps png pdf
FILES = $(foreach ext,$(EXTS),$(foreach base,$(BASES),$(base).$(ext)))
.PHONY: all
all: $(FILES)
%.eps: %.svg
inkscape --export-eps=$@ $<
%.eps: %.fig
fig2dev -L eps $< $@
%.png: %.eps
convert $< $@
%.pdf: %.eps
epstopdf --outfile=$@ $<
.PHONY: clean
clean:
rm -f $(FILES)