lib.mk 3.4 KB
Newer Older
1 2 3 4
# This mimics the top-level Makefile. We do it explicitly here so that this
# Makefile can operate with or without the kbuild infrastructure.
CC := $(CROSS_COMPILE)gcc

5 6 7 8
ifeq (0,$(MAKELEVEL))
OUTPUT := $(shell pwd)
endif

9 10 11 12 13 14
# The following are built by lib.mk common compile rules.
# TEST_CUSTOM_PROGS should be used by tests that require
# custom build rule and prevent common build rule use.
# TEST_PROGS are for test shell scripts.
# TEST_CUSTOM_PROGS and TEST_PROGS will be run by common run_tests
# and install targets. Common clean doesn't touch them.
15
TEST_GEN_PROGS := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_PROGS))
16
TEST_GEN_PROGS_EXTENDED := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_PROGS_EXTENDED))
17 18 19 20
TEST_GEN_FILES := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_FILES))

all: $(TEST_GEN_PROGS) $(TEST_GEN_PROGS_EXTENDED) $(TEST_GEN_FILES)

21
.ONESHELL:
22
define RUN_TESTS
23 24 25
	@test_num=`echo 0`;
	@echo "TAP version 13";
	@for TEST in $(1); do				\
26
		BASENAME_TEST=`basename $$TEST`;	\
27 28 29
		test_num=`echo $$test_num+1 | bc`;	\
		echo "selftests: $$BASENAME_TEST";	\
		echo "========================================";	\
30
		if [ ! -x $$TEST ]; then	\
31
			echo "selftests: Warning: file $$BASENAME_TEST is not executable, correct this.";\
32
			echo "not ok 1..$$test_num selftests: $$BASENAME_TEST [FAIL]"; \
33
		else					\
34
			cd `dirname $$TEST` > /dev/null; (./$$BASENAME_TEST > /tmp/$$BASENAME_TEST 2>&1 && echo "ok 1..$$test_num selftests: $$BASENAME_TEST [PASS]") || echo "not ok 1..$$test_num selftests:  $$BASENAME_TEST [FAIL]"; cd - > /dev/null;\
35
		fi;					\
36 37 38 39
	done;
endef

run_tests: all
40
	$(call RUN_TESTS, $(TEST_GEN_PROGS) $(TEST_CUSTOM_PROGS) $(TEST_PROGS))
41

M
Michael Ellerman 已提交
42
define INSTALL_RULE
43 44
	@if [ "X$(TEST_PROGS)$(TEST_PROGS_EXTENDED)$(TEST_FILES)" != "X" ]; then					\
		mkdir -p ${INSTALL_PATH};										\
45 46
		echo "rsync -a $(TEST_PROGS) $(TEST_PROGS_EXTENDED) $(TEST_FILES) $(INSTALL_PATH)/";	\
		rsync -a $(TEST_PROGS) $(TEST_PROGS_EXTENDED) $(TEST_FILES) $(INSTALL_PATH)/;		\
47
	fi
48
	@if [ "X$(TEST_GEN_PROGS)$(TEST_CUSTOM_PROGS)$(TEST_GEN_PROGS_EXTENDED)$(TEST_GEN_FILES)" != "X" ]; then					\
49
		mkdir -p ${INSTALL_PATH};										\
50 51
		echo "rsync -a $(TEST_GEN_PROGS) $(TEST_CUSTOM_PROGS) $(TEST_GEN_PROGS_EXTENDED) $(TEST_GEN_FILES) $(INSTALL_PATH)/";	\
		rsync -a $(TEST_GEN_PROGS) $(TEST_CUSTOM_PROGS) $(TEST_GEN_PROGS_EXTENDED) $(TEST_GEN_FILES) $(INSTALL_PATH)/;		\
52
	fi
M
Michael Ellerman 已提交
53 54 55 56 57 58 59 60 61 62
endef

install: all
ifdef INSTALL_PATH
	$(INSTALL_RULE)
else
	$(error Error: set INSTALL_PATH to use install)
endif

define EMIT_TESTS
63
	@for TEST in $(TEST_GEN_PROGS) $(TEST_CUSTOM_PROGS) $(TEST_PROGS); do \
64
		BASENAME_TEST=`basename $$TEST`;	\
65
		echo "(./$$BASENAME_TEST > /tmp/$$BASENAME_TEST 2>&1 && echo \"selftests: $$BASENAME_TEST [PASS]\") || echo \"selftests: $$BASENAME_TEST [FAIL]\""; \
M
Michael Ellerman 已提交
66 67 68 69 70 71
	done;
endef

emit_tests:
	$(EMIT_TESTS)

72 73 74 75 76
# define if isn't already. It is undefined in make O= case.
ifeq ($(RM),)
RM := rm -f
endif

77
define CLEAN
78
	$(RM) -r $(TEST_GEN_PROGS) $(TEST_GEN_PROGS_EXTENDED) $(TEST_GEN_FILES) $(EXTRA_CLEAN)
79 80 81 82
endef

clean:
	$(CLEAN)
83

84 85 86 87 88 89 90 91 92
# When make O= with kselftest target from main level
# the following aren't defined.
#
ifneq ($(KBUILD_SRC),)
LINK.c = $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $(TARGET_ARCH)
COMPILE.S = $(CC) $(ASFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c
LINK.S = $(CC) $(ASFLAGS) $(CPPFLAGS) $(LDFLAGS) $(TARGET_ARCH)
endif

93
$(OUTPUT)/%:%.c
94
	$(LINK.c) $^ $(LDLIBS) -o $@
95 96

$(OUTPUT)/%.o:%.S
97
	$(COMPILE.S) $^ -o $@
98 99

$(OUTPUT)/%:%.S
100
	$(LINK.S) $^ $(LDLIBS) -o $@
101

M
Michael Ellerman 已提交
102
.PHONY: run_tests all clean install emit_tests