[nbeat-hd] Added nbeat-hd package.
[profile/ivi/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
23 nbeat:
24         cd themes && make $@
25
26 nbeat-black:
27         cp themes/nbeat.edc themes/$@.edc
28         cd themes && make $@
29         rm themes/nbeat-*.edc
30
31 nbeat-hd:
32         cp themes/nbeat.edc themes/$@.edc
33         cd themes && make $@
34         rm themes/nbeat-*.edc
35
36 clean:
37         rm -rf themes/*.edj
38         rm -rf themes/nbeat-*.edc
39
40 distclean: clean