mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 13:25:12 +07:00
cc19ada734
Change from = to += in order to allows the user to pass whatever CFLAGS they wish(E.g. pass the proper headers and librareis (popt.h and libpopt.so) in cross-compiling) Suggested-by: Michael Ellerman <mpe@ellerman.id.au> Signed-off-by: Bamvor Jian Zhang <bamvor.zhangjian@linaro.org> Acked-by: Michael Ellerman <mpe@ellerman.id.au> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
23 lines
589 B
Makefile
23 lines
589 B
Makefile
CFLAGS += -O2
|
|
|
|
all:
|
|
$(CC) $(CFLAGS) mq_open_tests.c -o mq_open_tests -lrt
|
|
$(CC) $(CFLAGS) -o mq_perf_tests mq_perf_tests.c -lrt -lpthread -lpopt
|
|
|
|
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
|
|
|
|
TEST_PROGS := mq_open_tests mq_perf_tests
|
|
|
|
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
|