Merge "[genlist] add textblock styles - 1text, 2text.2, 2text.1icon,{4,7,9}, 2text...
[framework/uifw/efl-theme-tizen.git] / themes / Makefile
1 PREFIX ?= /usr
2 INSTALL=install -c
3 themedir=$(DESTDIR)$(PREFIX)/share/elementary/themes
4 EDJE_FLAGS_VERBOSE_ =
5 EDJE_FLAGS_VERBOSE_0 =
6 EDJE_FLAGS_VERBOSE_1 = -v
7
8 all: tizen-hd tizen-black-hd
9         echo $(escaped_prefix)
10
11 .SUFFIXES: .edc .edj
12 .edc.edj:
13         cp ./inc/$(@:.edj=-inc.edc) ./inc/tmp-inc.edc
14         #edje_cc -v -id ./images/$(@:.edj=) -sd ./sounds -fd ../objects $(@:.edj=.edc) # commented -sd ./sounds
15         edje_cc $(EDJE_FLAGS_$(V)) -id ./images/$(@:.edj=) -fd ../objects $(@:.edj=.edc)
16         rm ./inc/tmp-inc.edc
17
18 tizen-hd: tizen-hd.edj
19 tizen-black-hd: tizen-black-hd.edj
20
21 clean:
22         rm -f *.edj
23
24 install:
25         mkdir -p $(themedir)
26         $(INSTALL) tizen*.edj $(themedir)
27
28 distclean: clean