summaryrefslogtreecommitdiff
path: root/Makefile
blob: 4b013b19cbf1734d369356d9442b8adbe33299df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# This Makefile is in the public domain

.PHONY: graphics

SUBDIRS := php/doc python/doc

all: $(SUBDIRS)

$(SUBDIRS): graphics
	@cp -t $@ common/graphics/arch.png
	@$(MAKE) -C $@

graphics:
	@cd common/graphics; dot -Tpdf arch.dot > arch.pdf
	@cd common/graphics; dot -Tpdf arch_nobo.dot > arch_nobo.pdf
	@cd common/graphics; dot -Tjpg arch.dot > arch.jpg
	@cd common/graphics; dot -Tjpg arch_nobo.dot > arch_nobo.jpg