The bulk of the selftests are actually below the powerpc sub directory. This adds support for installing them, when on a powerpc machine, or if ARCH and CROSS_COMPILE are set appropriately. This is a little more complicated because of the sub directory structure under powerpc, but much of the common logic in lib.mk is still used. The net effect of the patch is still a reduction in code. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
42 lines
820 B
Makefile
42 lines
820 B
Makefile
noarg:
|
|
$(MAKE) -C ../
|
|
|
|
TEST_PROGS := count_instructions l3_bank_test per_event_excludes
|
|
EXTRA_SOURCES := ../harness.c event.c lib.c
|
|
|
|
all: $(TEST_PROGS) ebb
|
|
|
|
$(TEST_PROGS): $(EXTRA_SOURCES)
|
|
|
|
# loop.S can only be built 64-bit
|
|
count_instructions: loop.S count_instructions.c $(EXTRA_SOURCES)
|
|
$(CC) $(CFLAGS) -m64 -o $@ $^
|
|
|
|
include ../../lib.mk
|
|
|
|
DEFAULT_RUN_TESTS := $(RUN_TESTS)
|
|
override define RUN_TESTS
|
|
$(DEFAULT_RUN_TESTS)
|
|
$(MAKE) -C ebb run_tests
|
|
endef
|
|
|
|
DEFAULT_EMIT_TESTS := $(EMIT_TESTS)
|
|
override define EMIT_TESTS
|
|
$(DEFAULT_EMIT_TESTS)
|
|
$(MAKE) -s -C ebb emit_tests
|
|
endef
|
|
|
|
DEFAULT_INSTALL := $(INSTALL_RULE)
|
|
override define INSTALL_RULE
|
|
$(DEFAULT_INSTALL_RULE)
|
|
$(MAKE) -C ebb install
|
|
endef
|
|
|
|
clean:
|
|
rm -f $(TEST_PROGS) loop.o
|
|
$(MAKE) -C ebb clean
|
|
|
|
ebb:
|
|
$(MAKE) -k -C $@ all
|
|
|
|
.PHONY: all run_tests clean ebb
|