summaryrefslogtreecommitdiff
path: root/tools/Makefile
blob: d923139163e6a2e32d3e0cc3fc7a6dc1d5695cb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#
# Makefile for the graphlcd tools
#


-include ../Make.config

### Targets:

all:
	@$(MAKE) -C convpic all
	@$(MAKE) -C crtfont all
ifdef HAVE_FREETYPE2
	@$(MAKE) -C genfont all
endif
	@$(MAKE) -C showpic all
	@$(MAKE) -C showtext all
	@$(MAKE) -C lcdtestpattern all
	@$(MAKE) -C skintest all

install:
	@$(MAKE) -C convpic install
	@$(MAKE) -C crtfont install
ifdef HAVE_FREETYPE2
	@$(MAKE) -C genfont install
endif
	@$(MAKE) -C showpic install
	@$(MAKE) -C showtext install
	@$(MAKE) -C lcdtestpattern install
	@$(MAKE) -C skintest install

uninstall:
	@$(MAKE) -C convpic uninstall
	@$(MAKE) -C crtfont uninstall
ifdef HAVE_FREETYPE2
	@$(MAKE) -C genfont uninstall
endif
	@$(MAKE) -C showpic uninstall
	@$(MAKE) -C showtext uninstall
	@$(MAKE) -C lcdtestpattern uninstall
	@$(MAKE) -C skintest uninstall
 
clean:
	@$(MAKE) -C convpic clean
	@$(MAKE) -C crtfont clean
	@$(MAKE) -C genfont clean
	@$(MAKE) -C showpic clean
	@$(MAKE) -C showtext clean
	@$(MAKE) -C lcdtestpattern clean
	@$(MAKE) -C skintest clean