added a bunch of libraries
[vrlugburz] / libs / Makefile
1 .PHONY: all
2 all: treestore imago drawtext
3
4 .PHONY: clean
5 clean: clean-treestore clean-imago clean-drawtext
6
7 .PHONY: treestore
8 treestore:
9         $(MAKE) -C treestore
10
11 .PHONY: clean-treestore
12 clean-treestore:
13         $(MAKE) -C treestore clean
14
15 .PHONY: imago
16 imago:
17         $(MAKE) -C imago
18
19 .PHONY: clean-imago
20 clean-imago:
21         $(MAKE) -C imago clean
22
23 .PHONY: drawtext
24 drawtext:
25         $(MAKE) -C drawtext
26
27 .PHONY: clean-drawtext
28 clean-drawtext:
29         $(MAKE) -C drawtext clean