Initialize Tizen 2.3
[framework/uifw/elementary.git] / mobile / TC / elm_ts / entry / Makefile
1 CC ?= gcc
2
3 TARGETS = utc_UIFW_elm_entry_add_func \
4           utc_UIFW_elm_entry_context_menu_disabled_get_func \
5           utc_UIFW_elm_entry_cursor_content_get_func \
6           utc_UIFW_elm_entry_cursor_down_func \
7           utc_UIFW_elm_entry_cursor_is_format_get_func \
8           utc_UIFW_elm_entry_cursor_is_visible_format_get_func \
9           utc_UIFW_elm_entry_cursor_next_func \
10           utc_UIFW_elm_entry_cursor_prev_func \
11           utc_UIFW_elm_entry_cursor_up_func \
12           utc_UIFW_elm_entry_editable_get_func \
13           utc_UIFW_elm_entry_entry_get_func \
14           utc_UIFW_elm_entry_imf_context_get_func \
15           utc_UIFW_elm_entry_markup_to_utf8_func \
16           utc_UIFW_elm_entry_password_get_func \
17           utc_UIFW_elm_entry_selection_get_func \
18           utc_UIFW_elm_entry_single_line_get_func \
19           utc_UIFW_elm_entry_utf8_to_markup_func
20
21 PKGS = elementary evas
22
23 LDFLAGS = `pkg-config --libs $(PKGS)`
24 LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
25 LDFLAGS += -L$(TET_ROOT)/lib/tet3 -ltcm_s
26 LDFLAGS += -L$(TET_ROOT)/lib/tet3 -lapi_s
27
28 CFLAGS = -I. `pkg-config --cflags $(PKGS)`
29 CFLAGS += -I$(TET_ROOT)/inc/tet3
30 CFLAGS += -Wall
31
32 all: $(TARGETS)
33
34 $(TARGETS): %: %.c
35         $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
36
37 clean:
38         rm -f $(TARGETS)