aboutsummaryrefslogtreecommitdiff
path: root/tests/fs-tests/integrity/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fs-tests/integrity/Makefile')
-rw-r--r--tests/fs-tests/integrity/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/fs-tests/integrity/Makefile b/tests/fs-tests/integrity/Makefile
index 509a94e..4d6fc7d 100644
--- a/tests/fs-tests/integrity/Makefile
+++ b/tests/fs-tests/integrity/Makefile
@@ -4,9 +4,8 @@ CC = gcc
endif
COMMON_HEADERS_DIR := ../../../include
-LIBUBI_PATH=../../../ubi-utils/
-LIBUBI_SRC_PATH=../../../ubi-utils/src/
-LIBUBI_HEADER_PATH=../../../ubi-utils/include
+LIBUBI_PATH = ../../../ubi-utils/
+LIBUBI_HEADER_PATH = $(LIBUBI_PATH)/include
CFLAGS := $(CFLAGS) -Wall -g -O2 -I$(COMMON_HEADERS_DIR) -I$(LIBUBI_HEADER_PATH)
@@ -18,7 +17,7 @@ all: $(TARGETS)
# Compile ubilib
libubi.a:
- $(CC) $(CFLAGS) -I $(LIBUBI_SRC_PATH) -c $(LIBUBI_SRC_PATH)/libubi.c -o libubi.o
+ $(CC) $(CFLAGS) -c $(LIBUBI_PATH)/libubi.c -o libubi.o
ar cr libubi.a libubi.o
$(TARGETS): libubi.a