Skip to content
Snippets Groups Projects
Forked from Platform / Development / swh-model
381 commits behind the upstream repository.
Makefile 224 B

MERKLE_DAG =  swh-merkle-dag.pdf swh-merkle-dag.svg

BUILD_TARGETS =
BUILD_TARGETS += $(MERKLE_DAG)

all: $(BUILD_TARGETS)


%.svg: %.dia
	inkscape -l $@ $<

%.pdf: %.dia
	inkscape -A $@ $<

clean:
	-rm -f $(BUILD_TARGETS)