Initialize Tizen 2.3
[framework/uifw/elementary.git] / mobile / TC / elm_ts / tickernoti / Makefile
1 CC ?= gcc
2
3 TARGETS = utc_UIFW_elm_tickernoti_add_func \
4    utc_UIFW_elm_tickernoti_icon_set_func \
5    utc_UIFW_elm_tickernoti_icon_get_func \
6    utc_UIFW_elm_tickernoti_label_set_func \
7    utc_UIFW_elm_tickernoti_label_get_func \
8    utc_UIFW_elm_tickernoti_detailview_label_set_func \
9    utc_UIFW_elm_tickernoti_detailview_label_get_func \
10    utc_UIFW_elm_tickernoti_detailview_button_set_func \
11    utc_UIFW_elm_tickernoti_detailview_button_get_func \
12    utc_UIFW_elm_tickernoti_detailview_icon_set_func \
13    utc_UIFW_elm_tickernoti_detailview_icon_get_func \
14    utc_UIFW_elm_tickernoti_detailview_get_func \
15    utc_UIFW_elm_tickernoti_rotation_set_func \
16    utc_UIFW_elm_tickernoti_rotation_get_func \
17    utc_UIFW_elm_tickernoti_mode_set_func \
18    utc_UIFW_elm_tickernoti_mode_get_func 
19
20 PKGS = elementary evas
21
22 LDFLAGS = `pkg-config --libs $(PKGS)`
23 LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
24 LDFLAGS += -L$(TET_ROOT)/lib/tet3 -ltcm_s
25 LDFLAGS += -L$(TET_ROOT)/lib/tet3 -lapi_s
26
27 CFLAGS = -I. `pkg-config --cflags $(PKGS)`
28 CFLAGS += -I$(TET_ROOT)/inc/tet3
29 CFLAGS += -Wall
30
31 all: $(TARGETS)
32
33 $(TARGETS): %: %.c
34         $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
35
36 clean:
37         rm -f $(TARGETS)
38         rm -f tet_captured
39         rm -f tet_lock
40         rm -f *~