mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
b11054b959
Use make's implict rule for building simple C programs. Suggested-by: Michael Ellerman <mpe@ellerman.id.au> Signed-off-by: Bamvor Jian Zhang <bamvor.zhangjian@linaro.org> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
21 lines
506 B
Makefile
21 lines
506 B
Makefile
CFLAGS += -O2
|
|
LDLIBS = -lrt -lpthread -lpopt
|
|
TEST_PROGS := mq_open_tests mq_perf_tests
|
|
|
|
all: $(TEST_PROGS)
|
|
|
|
include ../lib.mk
|
|
|
|
override define RUN_TESTS
|
|
@./mq_open_tests /test1 || echo "selftests: mq_open_tests [FAIL]"
|
|
@./mq_perf_tests || echo "selftests: mq_perf_tests [FAIL]"
|
|
endef
|
|
|
|
override define EMIT_TESTS
|
|
echo "./mq_open_tests /test1 || echo \"selftests: mq_open_tests [FAIL]\""
|
|
echo "./mq_perf_tests || echo \"selftests: mq_perf_tests [FAIL]\""
|
|
endef
|
|
|
|
clean:
|
|
rm -f mq_open_tests mq_perf_tests
|