diff options
author | Bamvor Jian Zhang <bamvor.zhangjian@linaro.org> | 2015-09-09 21:06:27 +0800 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2015-09-14 16:43:24 -0600 |
commit | b11054b959cf921a646b64983bc35193c1597739 (patch) | |
tree | 8954be6d27133c020ef98ece717d45f57639fa4d /tools | |
parent | cc19ada7340b5ed87a94ea381ff7ade6a053b2f3 (diff) | |
download | linux-b11054b959cf921a646b64983bc35193c1597739.tar.gz linux-b11054b959cf921a646b64983bc35193c1597739.tar.bz2 linux-b11054b959cf921a646b64983bc35193c1597739.zip |
selftests: mqueue: simplify the Makefile
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>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/mqueue/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/tools/testing/selftests/mqueue/Makefile b/tools/testing/selftests/mqueue/Makefile index ca8327f020b9..eebac29acbd9 100644 --- a/tools/testing/selftests/mqueue/Makefile +++ b/tools/testing/selftests/mqueue/Makefile @@ -1,8 +1,8 @@ CFLAGS += -O2 +LDLIBS = -lrt -lpthread -lpopt +TEST_PROGS := mq_open_tests mq_perf_tests -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 +all: $(TEST_PROGS) include ../lib.mk @@ -11,8 +11,6 @@ override define RUN_TESTS @./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]\"" |