summaryrefslogtreecommitdiff
path: root/TC/testcase/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'TC/testcase/Makefile')
-rwxr-xr-xTC/testcase/Makefile28
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)