From: Myoungwoon Kim Date: Tue, 20 Sep 2011 03:45:29 +0000 (+0900) Subject: Fix the build errors related to gcc compiler. X-Git-Tag: REL_F_I9200_20110923_1~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=824046aeec2df56959ebfc50557d0a8511cf619e;p=framework%2Fuifw%2Felementary.git Fix the build errors related to gcc compiler. Change-Id: I1af8ee4047e685c1bb85160cc2a383ae4e3a907e --- diff --git a/TC/elm_ts/box/Makefile b/TC/elm_ts/box/Makefile index d4a889d..a953b6e 100755 --- a/TC/elm_ts/box/Makefile +++ b/TC/elm_ts/box/Makefile @@ -9,10 +9,9 @@ TARGETS = utc_UIFW_elm_box_add_func \ utc_UIFW_elm_box_pack_after_func \ utc_UIFW_elm_box_clear_func \ utc_UIFW_elm_box_unpack_func \ - utc_UIFW_elm_box_unpack_all_func - + utc_UIFW_elm_box_unpack_all_func -PKGS = elementary +PKGS = elementary evas LDFLAGS = `pkg-config --libs $(PKGS)` LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o @@ -25,8 +24,8 @@ CFLAGS += -Wall all: $(TARGETS) -$(TARGET): %: %.c - $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS) +$(TARGETS): %: %.c + $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS) clean: rm -f *~ *.o tet_captured tet_lock $(TARGETS)