Merge "[elc_naviframe]: backbutton moved on right side of control bar area."
[profile/ivi/efl-theme-tizen.git] / Makefile
1 PREFIX ?= /usr
2 INSTALL_DIR=$(DESTDIR)/opt/var/efl-theme-tizen-edc
3
4 INSTALL=install -c
5
6 $(warning $(CC) )
7
8 all: themes
9         echo $(escaped_prefix)
10
11 themes: copy_edc        
12         cd themes && make
13         rm themes/tizen-*.edc
14
15 install_themes:
16         cd themes && make install
17
18 install_edc:
19         mkdir -p $(INSTALL_DIR)
20         cp themes/tizen.edc themes/widgets $(INSTALL_DIR) -r
21
22 install: install_themes install_edc
23
24 copy_edc:
25         cp themes/tizen.edc themes/tizen-black.edc
26         cp themes/tizen.edc themes/tizen-hd.edc
27         cp themes/tizen.edc themes/tizen-black-hd.edc
28
29 tizen:
30         cd themes && make $@
31
32 tizen-black:
33         cp themes/tizen.edc themes/$@.edc
34         cd themes && make $@
35         rm themes/tizen-*.edc
36
37 tizen-hd:
38         cp themes/tizen.edc themes/$@.edc
39         cd themes && make $@
40         rm themes/tizen-*.edc
41
42 tizen-black-hd:
43         cp themes/tizen.edc themes/$@.edc
44         cd themes && make $@
45         rm themes/tizen-*.edc
46
47 clean:
48         rm -rf themes/*.edj
49         rm -rf themes/tizen-*.edc
50
51 distclean: clean