diff options
author | jy910.yun <jy910.yun@samsung.com> | 2013-04-11 11:34:17 +0900 |
---|---|---|
committer | jy910.yun <jy910.yun@samsung.com> | 2013-04-11 11:34:17 +0900 |
commit | a3e38872abce3a86e181188e8b91f9dffbc1f918 (patch) | |
tree | 7fea2befb70d7554f9e2cf3050ded93e934d6d74 /TC/testcase/Makefile | |
parent | fc9b4dca1da6fe1fc243efdfb8b02f594c9d9273 (diff) | |
download | device-tizen_2.1.tar.gz device-tizen_2.1.tar.bz2 device-tizen_2.1.zip |
delete redundant TC filessubmit/tizen_2.2/20130714.144107submit/tizen_2.2/20130714.135408submit/tizen_2.1/20130424.230315accepted/tizen_2.1/20130425.0406552.2_release2.1b_releasetizen_2.1
to clear opensource keyword issue
Diffstat (limited to 'TC/testcase/Makefile')
-rwxr-xr-x | TC/testcase/Makefile | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/TC/testcase/Makefile b/TC/testcase/Makefile deleted file mode 100755 index 8cc3da8..0000000 --- a/TC/testcase/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -CC = gcc - -C_FILES = $(shell ls *.c) - -PKGS = dlog capi-system-device capi-system-power - -#TET_ROOT = /home/idkiller/work/tetware/TETware/tetware-target - -LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o -LDFLAGS += -L$(TET_ROOT)/lib/tet3 -ltcm_s -LDFLAGS += -L$(TET_ROOT)/lib/tet3 -lapi_s -LDFLAGS += `pkg-config --libs $(PKGS)` - -CFLAGS += `pkg-config --cflags $(PKGS)` -CFLAGS += -I. -CFLAGS += -I$(TET_ROOT)/inc/tet3 -CFLAGS += -Wall - -#TARGETS = $(C_FILES:%.c=tc-%) -TCS := $(shell ls -1 *.c | cut -d. -f1) - -all: $(TCS) - -%: %.c - $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS) - -clean: - rm -f $(TCS) |