projects
/
demo_prior
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
- added libdrawtext
[demo_prior]
/
libs
/
Makefile
1
.PHONY: all
2
all: glew treestore imago drawtext
3
4
.PHONY: clean
5
clean: glew-clean treestore-clean imago-clean drawtext-clean
6
7
.PHONY: glew
8
glew:
9
$(MAKE) -C glew
10
11
.PHONY: glew-clean
12
glew-clean:
13
$(MAKE) -C glew clean
14
15
.PHONY: treestore
16
treestore:
17
$(MAKE) -C treestore
18
19
.PHONY: treestore-clean
20
treestore-clean:
21
$(MAKE) -C treestore clean
22
23
.PHONY: imago
24
imago:
25
$(MAKE) -C imago2
26
27
.PHONY: imago-clean
28
imago-clean:
29
$(MAKE) -C imago2 clean
30
31
.PHONY: drawtext
32
drawtext:
33
$(MAKE) -C drawtext
34
35
.PHONY: drawtext-clean
36
drawtext-clean:
37
$(MAKE) -C drawtext clean