Merge "[timepicker] remove 'extended' from the style name"
[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         cp themes/nbeat.edc themes/nbeat-hd.edc
22         cp themes/nbeat.edc themes/nbeat-black-hd.edc
23
24 nbeat:
25         cd themes && make $@
26
27 nbeat-black:
28         cp themes/nbeat.edc themes/$@.edc
29         cd themes && make $@
30         rm themes/nbeat-*.edc
31
32 nbeat-hd:
33         cp themes/nbeat.edc themes/$@.edc
34         cd themes && make $@
35         rm themes/nbeat-*.edc
36
37 nbeat-black-hd:
38         cp themes/nbeat.edc themes/$@.edc
39         cd themes && make $@
40         rm themes/nbeat-*.edc
41
42 clean:
43         rm -rf themes/*.edj
44         rm -rf themes/nbeat-*.edc
45
46 distclean: clean