Merge "[Notify] Added default style implementation for notify widget. This fixes...
[profile/ivi/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 $(EDJE_FLAGS_$(V)) -id ./images/$(@:.edj=) -sd ./sounds -fd ../objects $(@:.edj=.edc)
15         rm ./inc/tmp-inc.edc
16
17 tizen-hd: tizen-hd.edj
18 tizen-black-hd: tizen-black-hd.edj
19
20 clean:
21         rm -f *.edj
22
23 install:
24         mkdir -p $(themedir)
25         $(INSTALL) tizen*.edj $(themedir)
26
27 distclean: clean