test case updation for elm_calendar
[framework/uifw/elementary.git] / TC / elm_ts / calendar / Makefile
1 CC ?= gcc
2
3 TARGETS = utc_UIFW_elm_calendar_add_func \
4           utc_UIFW_elm_calendar_weekdays_names_get_func \
5           utc_UIFW_elm_calendar_interval_get_func \
6           utc_UIFW_elm_calendar_day_selection_enabled_get_func \
7           utc_UIFW_elm_calendar_mark_add_func \
8           utc_UIFW_elm_calendar_marks_get_func \
9           utc_UIFW_elm_calendar_min_max_year_get_func \
10           utc_UIFW_elm_calendar_selected_time_get_func \
11           utc_UIFW_elm_calendar_weekdays_names_set_func \
12           utc_UIFW_elm_calendar_interval_set_func \
13           utc_UIFW_elm_calendar_min_max_year_set_func \
14           utc_UIFW_elm_calendar_day_selection_enabled_set_func \
15           utc_UIFW_elm_calendar_selected_time_set_func
16
17 PKGS = elementary
18
19 LDFLAGS = `pkg-config --libs $(PKGS)`
20 LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
21 LDFLAGS += -L$(TET_ROOT)/lib/tet3 -ltcm_s
22 LDFLAGS += -L$(TET_ROOT)/lib/tet3 -lapi_s
23
24 CFLAGS = -I. `pkg-config --cflags $(PKGS)`
25 CFLAGS += -I$(TET_ROOT)/inc/tet3
26 CFLAGS += -Wall
27
28 all: $(TARGETS)
29
30 $(TARGET): %: %.c
31         $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
32
33 clean:
34         rm -f $(TARGETS)