Fix entry macro name
[framework/uifw/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
27 tizen-hd:
28         cp themes/tizen.edc themes/$@.edc
29         cd themes && make $@
30         rm themes/tizen-*.edc
31
32 clean:
33         rm -rf themes/*.edj
34         rm -rf themes/tizen-*.edc
35
36 distclean: clean