Package upload
[framework/uifw/elementary.git] / TC / elm_ts / dialoguegroup / Makefile
1 CC ?= gcc
2
3 TARGETS = utc_UIFW_elm_dialoguegroup_add_func \
4           utc_UIFW_elm_dialoguegroup_prepend_func \
5           utc_UIFW_elm_dialoguegroup_append_func \
6           utc_UIFW_elm_dialoguegroup_insert_after_func \
7           utc_UIFW_elm_dialoguegroup_insert_before_func \
8           utc_UIFW_elm_dialoguegroup_remove_func \
9           utc_UIFW_elm_dialoguegroup_remove_all_func \
10           utc_UIFW_elm_dialoguegroup_title_set_func \
11           utc_UIFW_elm_dialoguegroup_title_get_func \
12           utc_UIFW_elm_dialoguegroup_press_effect_get_func \
13           utc_UIFW_elm_dialoguegroup_press_effect_set_func \
14           utc_UIFW_elm_dialoguegroup_item_content_get_func \
15           utc_UIFW_elm_dialoguegroup_item_style_set_func \
16           utc_UIFW_elm_dialoguegroup_item_style_get_func
17
18 PKGS = elementary
19
20 LDFLAGS = `pkg-config --libs $(PKGS)`
21 LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
22 LDFLAGS += -L$(TET_ROOT)/lib/tet3 -ltcm_s
23 LDFLAGS += -L$(TET_ROOT)/lib/tet3 -lapi_s
24
25 CFLAGS = -I. `pkg-config --cflags $(PKGS)`
26 CFLAGS += -I$(TET_ROOT)/inc/tet3
27 CFLAGS += -Wall
28
29 all: $(TARGETS)
30
31 $(TARGET): %: %.c
32         $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
33
34 clean:
35         rm -f $(TARGETS)
36         rm -f tet_captured
37         rm -f *~