summaryrefslogtreecommitdiff
path: root/tests/ubi-tests/Makefile
blob: a15d93cdb1337c6fbc6c408794d0cc6807cfba6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
LIBUBI_PATH=../../ubi-utils/
LIBUBI_SRC_PATH=../../ubi-utils/src
LIBUBI_HEADER_PATH=../../ubi-utils/inc
UBIUTILS_PATH=../../ubi-utils/

CC := $(CROSS)gcc

TESTS=io_update rmvol integ io_paral io_read io_basic \
          mkvol_basic mkvol_bad mkvol_paral rsvol

HELPER_NAMES=ubiupdatevol
HELPERS=$(addprefix helpers/, $(HELPER_NAMES))

# Because of implicite rules we use make treats .o files as intermediate, thus
# it removes the. If you want to prevent the removal, uncomment the below
#.SECONDARY: $(addsuffix .o, $(TESTS)) $(addsuffix .o, $(HELPERS))

CFLAGS += -Wall -I$(LIBUBI_HEADER_PATH) -L $(LIBUBI_PATH) -O0 -ggdb

all: ubi-utils libubi $(TESTS) $(HELPERS)

# Compile ubilib with the udevsettle hack
libubi: $(LIBUBI_SRC_PATH)/libubi.c  $(LIBUBI_HEADER_PATH)/libubi.h  $(LIBUBI_SRC_PATH)/libubi_int.h
	$(CC) $(CFLAGS) -I $(LIBUBI_SRC_PATH) -DUDEV_SETTLE_HACK -c $(LIBUBI_SRC_PATH)/libubi.c -o libubi.o
	ar cr libubi.a libubi.o

# The below cancels existing implicite rule to make programs from .c files,
# in order to force make using our rule defined below
%: %.c

# The below is the rule to get an .o file from a .c file
%.o: %.c
	$(CC) $(CFLAGS) $< -c -o $@

# And the below is the rule to get final test executable from its .o and common.o
%: %.o common.o
	$(CC) $(CFLAGS) $^ -lubi -o $@

# *paral tests require libpthread, thus the below rule for them
%paral: %paral.o common.o
	$(CC) $(CFLAGS) $^ -lubi -lpthread -o $@

ubi-utils:
	make -C $(UBIUTILS_PATH)

clean:
	rm -f $(TESTS) $(addsuffix .o, $(TESTS)) libubi.* $(HELPERS) $(addsuffix .o, $(HELPERS))