Merge "[nbeat] Removed blue, green, purple theme."
[framework/uifw/efl-theme-tizen.git] / Makefile
1 PREFIX ?= /usr
2
3 INSTALL=install -c
4
5 $(warning $(CC) )
6
7 all: themes
8         echo $(escaped_prefix)
9
10 themes: copy_edc        
11         cd themes && make
12         rm themes/nbeat-*.edc
13
14 install_themes:
15         cd themes && make install
16         
17 install: install_themes
18
19 copy_edc:
20         cp themes/nbeat.edc themes/nbeat-black.edc
21
22 nbeat:
23         cd themes && make $@
24
25 nbeat-black:
26         cp themes/nbeat.edc themes/$@.edc
27         cd themes && make $@
28         rm themes/nbeat-*.edc
29
30 clean:
31         rm -rf themes/*.edj
32         rm -rf themes/nbeat-*.edc
33
34 distclean: clean