[Initialize] nBeat theme initialization.
[platform/core/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-blue.edc
21         cp themes/nbeat.edc themes/nbeat-purple.edc
22         cp themes/nbeat.edc themes/nbeat-green.edc
23         cp themes/nbeat.edc themes/nbeat-black.edc
24
25 nbeat:
26         cd themes && make $@ 
27
28 nbeat-blue nbeat-purple nbeat-green nbeat-black: 
29         cp themes/nbeat.edc themes/$@.edc
30         cd themes && make $@ 
31         rm themes/nbeat-*.edc
32
33 clean:
34         rm -rf themes/*.edj
35         rm -rf themes/nbeat-*.edc
36
37 distclean: clean