Merge "[genlist] replace tab to space chars"
[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-hd.edc
26         cp themes/tizen.edc themes/tizen-black-hd.edc
27
28 tizen-hd:
29         cp themes/tizen.edc themes/$@.edc
30         cd themes && make $@
31         rm themes/tizen-*.edc
32
33 tizen-black-hd:
34         cp themes/tizen.edc themes/$@.edc
35         cd themes && make $@
36         rm themes/tizen-*.edc
37
38 clean:
39         rm -rf themes/*.edj
40         rm -rf themes/tizen-*.edc
41
42 distclean: clean