TestCase - added Makefiles for animator, ctxpopup, dayselector, slidingdrawer
authorChunEon Park <chuneon.park@samsung.com>
Fri, 5 Nov 2010 01:13:32 +0000 (10:13 +0900)
committerChunEon Park <chuneon.park@samsung.com>
Fri, 5 Nov 2010 01:13:32 +0000 (10:13 +0900)
TC/elm_ts/animator/Makefile [new file with mode: 0755]
TC/elm_ts/ctxpopup/Makefile [new file with mode: 0755]
TC/elm_ts/dayselector/Makefile [new file with mode: 0755]
TC/elm_ts/slidingdrawer/Makefile [new file with mode: 0755]

diff --git a/TC/elm_ts/animator/Makefile b/TC/elm_ts/animator/Makefile
new file mode 100755 (executable)
index 0000000..1274edf
--- /dev/null
@@ -0,0 +1,41 @@
+CC ?= gcc
+
+TARGETS = utc_UIFW_elm_check_add_func \
+               utc_UIFW_elm_animator_add_func \
+               utc_UIFW_elm_animator_animate_func \
+               utc_UIFW_elm_animator_auto_reverse_get_func \
+               utc_UIFW_elm_animator_auto_reverse_set_func \
+               utc_UIFW_elm_animator_completion_callback_set_func \
+               utc_UIFW_elm_animator_curve_style_set_func \
+               utc_UIFW_elm_animator_del_func \
+               utc_UIFW_elm_animator_duration_set_func \
+               utc_UIFW_elm_animator_operating_get_func \
+               utc_UIFW_elm_animator_operation_callback_set_func \
+               utc_UIFW_elm_animator_pause_func \
+               utc_UIFW_elm_animator_repeat_get_func \
+               utc_UIFW_elm_animator_repeat_set_func \
+               utc_UIFW_elm_animator_resume_func \
+               utc_UIFW_elm_animator_stop_func 
+
+
+
+PKGS = elementary
+
+LDFLAGS = `pkg-config --libs $(PKGS)`
+LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
+LDFLAGS += -L$(TET_ROOT)/lib/tet3 -ltcm_s
+LDFLAGS += -L$(TET_ROOT)/lib/tet3 -lapi_s
+
+CFLAGS = -I. `pkg-config --cflags $(PKGS)`
+CFLAGS += -I$(TET_ROOT)/inc/tet3
+CFLAGS += -Wall
+
+all: $(TARGETS)
+
+$(TARGET): %: %.c
+       $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+
+clean:
+       rm -f $(TARGETS)
+       rm -f tet_captured
+       rm -f *~
diff --git a/TC/elm_ts/ctxpopup/Makefile b/TC/elm_ts/ctxpopup/Makefile
new file mode 100755 (executable)
index 0000000..da6b4b8
--- /dev/null
@@ -0,0 +1,45 @@
+CC ?= gcc
+
+TARGETS = uts_elm_ctxpopup_add_func \
+         uts_elm_ctxpopup_horizontal_set \
+         uts_elm_ctxpopup_horizontal_get \
+         uts_elm_ctxpopup_item_add \
+         uts_elm_ctxpopup_item_icon_set \
+         uts_elm_ctxpopup_item_label_set \
+         uts_elm_ctxpopup_item_del \
+         uts_elm_ctxpopup_item_disabled_set \
+         uts_elm_ctxpopup_clear \
+         uts_elm_ctxpopup_item_label_get \
+         uts_elm_ctxpopup_item_icon_get \
+         uts_elm_ctxpopup_scroller_disabled_set \
+         uts_elm_ctxpopup_screen_dimmed_disabled_set \
+          uts_elm_ctxpopup_button_append \
+          uts_elm_ctxpopup_arrow_priority_set \
+         uts_elm_ctxpopup_content_set \
+          uts_elm_ctxpopup_content_unset \
+          uts_elm_ctxpopup_position_forced_set \
+          uts_elm_ctxpopup_position_forced_get \
+         uts_elm_ctxpopup_area_set
+           
+
+
+PKGS = elementary
+
+LDFLAGS = `pkg-config --libs $(PKGS)`
+LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
+LDFLAGS += -L$(TET_ROOT)/lib/tet3 -ltcm_s
+LDFLAGS += -L$(TET_ROOT)/lib/tet3 -lapi_s
+
+CFLAGS = -I. `pkg-config --cflags $(PKGS)`
+CFLAGS += -I$(TET_ROOT)/inc/tet3
+CFLAGS += -Wall
+
+all: $(TARGETS)
+
+$(TARGET): %: %.c
+       $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+
+clean:
+       rm -f $(TARGETS)
+       rm -f tet_captured
+       rm -f *~
diff --git a/TC/elm_ts/dayselector/Makefile b/TC/elm_ts/dayselector/Makefile
new file mode 100755 (executable)
index 0000000..2bd827b
--- /dev/null
@@ -0,0 +1,27 @@
+CC ?= gcc
+
+TARGETS = utc_UIFW_elm_dayselector_add_func \
+         utc_UIFW_elm_dayselector_check_state_set_func \
+         utc_UIFW_elm_dayselector_check_state_get_func \
+
+
+PKGS = elementary
+
+LDFLAGS = `pkg-config --libs $(PKGS)`
+LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
+LDFLAGS += -L$(TET_ROOT)/lib/tet3 -ltcm_s
+LDFLAGS += -L$(TET_ROOT)/lib/tet3 -lapi_s
+
+CFLAGS = -I. `pkg-config --cflags $(PKGS)`
+CFLAGS += -I$(TET_ROOT)/inc/tet3
+CFLAGS += -Wall
+
+all: $(TARGETS)
+
+$(TARGET): %: %.c
+       $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+
+clean:
+       rm -f $(TARGETS)
+       rm -f tet_captured
+       rm -f *~
diff --git a/TC/elm_ts/slidingdrawer/Makefile b/TC/elm_ts/slidingdrawer/Makefile
new file mode 100755 (executable)
index 0000000..2971880
--- /dev/null
@@ -0,0 +1,29 @@
+CC ?= gcc
+
+TARGETS = uts_elm_slidingdrawer_add_func \
+         uts_elm_slidingdrawer_content_set \
+         uts_elm_slidingdrawer_content_unset \
+         uts_elm_slidingdrawer_pos_set \
+         uts_elm_slidingdrawer_max_drag_value_set \
+         uts_elm_slidingdrawer_drag_value_set
+
+PKGS = elementary
+
+LDFLAGS = `pkg-config --libs $(PKGS)`
+LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
+LDFLAGS += -L$(TET_ROOT)/lib/tet3 -ltcm_s
+LDFLAGS += -L$(TET_ROOT)/lib/tet3 -lapi_s
+
+CFLAGS = -I. `pkg-config --cflags $(PKGS)`
+CFLAGS += -I$(TET_ROOT)/inc/tet3
+CFLAGS += -Wall
+
+all: $(TARGETS)
+
+$(TARGET): %: %.c
+       $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+
+clean:
+       rm -f $(TARGETS)
+       rm -f tet_captured
+       rm -f *~