[TC/elm_ts/button] Removed the testcases for the APIs of button no longer present.
[framework/uifw/elementary.git] / TC / elm_ts / button / Makefile
1 CC ?= gcc
2
3 TARGETS = utc_UIFW_elm_button_add_func \
4                 utc_UIFW_elm_button_label_set_func \
5                 utc_UIFW_elm_button_label_get_func \
6                 utc_UIFW_elm_button_icon_set_func \
7                 utc_UIFW_elm_button_icon_get_func \
8                 utc_UIFW_elm_button_autorepeat_set_func \
9                 utc_UIFW_elm_button_autorepeat_initial_timeout_set_func \
10                 utc_UIFW_elm_button_autorepeat_gap_timeout_set_func
11
12 PKGS = elementary evas
13
14 LDFLAGS = `pkg-config --libs $(PKGS)`
15 LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
16 LDFLAGS += -L$(TET_ROOT)/lib/tet3 -ltcm_s
17 LDFLAGS += -L$(TET_ROOT)/lib/tet3 -lapi_s
18
19 CFLAGS = -I. `pkg-config --cflags $(PKGS)`
20 CFLAGS += -I$(TET_ROOT)/inc/tet3
21 CFLAGS += -Wall
22
23 all: $(TARGETS)
24
25 $(TARGETS): %: %.c
26         $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
27
28 clean:
29         rm -f $(TARGETS)
30         rm -f tet_captured
31         rm -f tet_lock
32         rm -f *~