summaryrefslogtreecommitdiff
path: root/ubi-utils/tests/Makefile
diff options
context:
space:
mode:
authorArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2008-02-19 17:17:44 +0200
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2008-02-19 17:17:44 +0200
commit238050eeebb0389ecdc5fe3c016194b287a30100 (patch)
tree9d6e12fb0657bc0c86ba13c2516d32e80acff02b /ubi-utils/tests/Makefile
parent86dd9696d3a1acb036d65909d93d73455b8aed3a (diff)
Remove redundant tests
Sorry for this mess in the history, but I hope this is the last ugly commit. I accidentally copies the tests from mtd-utils.git/tests/ubi-tests/ to here. Remove them. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'ubi-utils/tests/Makefile')
-rw-r--r--ubi-utils/tests/Makefile40
1 files changed, 0 insertions, 40 deletions
diff --git a/ubi-utils/tests/Makefile b/ubi-utils/tests/Makefile
deleted file mode 100644
index 1b17f81..0000000
--- a/ubi-utils/tests/Makefile
+++ /dev/null
@@ -1,40 +0,0 @@
-
-INCLUDE1=../inc
-INCLUDE2=../../include
-LIB=.
-
-CC := $(CROSS)gcc
-
-ALL_FILES=libubi.a io_update
-ALL_FILES+=io_paral io_read io_basic mkvol_basic mkvol_bad mkvol_paral rsvol
-ALL_FILES+=integ
-
-CFLAGS += -Wall -I$(INCLUDE1) -I$(INCLUDE2) -L$(LIB) -ggdb
-
-all: $(ALL_FILES)
-
-libubi.a: ../src/libubi.c ../inc/libubi.h ../src/libubi_int.h
- $(CC) $(CFLAGS) -c ../src/libubi.c -o libubi.o
- ar cr libubi.a libubi.o
-
-io_paral: io_paral.c common.c
- $(CC) $(CFLAGS) $^ -lubi -lpthread -o $@
-io_update: io_update.c common.c
- $(CC) $(CFLAGS) $^ -lubi -o $@
-io_read: io_read.c common.c
- $(CC) $(CFLAGS) $^ -lubi -o $@
-io_basic: io_basic.c common.c
- $(CC) $(CFLAGS) $^ -lubi -o $@
-mkvol_basic: mkvol_basic.c common.c
- $(CC) $(CFLAGS) $^ -lubi -o $@
-mkvol_bad: mkvol_bad.c common.c
- $(CC) $(CFLAGS) $^ -lubi -o $@
-mkvol_paral: mkvol_paral.c common.c
- $(CC) $(CFLAGS) $^ -lubi -lpthread -o $@
-rsvol: rsvol.c common.c
- $(CC) $(CFLAGS) $^ -lubi -o $@
-integ: integ.c
- $(CC) $(CFLAGS) $^ -lubi -o $@
-
-clean:
- rm -rf $(ALL_FILES) $(addsuffix .o, $(ALL_FILES))