]> git.karo-electronics.de Git - karo-tx-linux.git/blob - tools/testing/selftests/mqueue/Makefile
Merge branch 'yem-kconfig-rc-fixes' of git://gitorious.org/linux-kconfig/linux-kconfi...
[karo-tx-linux.git] / tools / testing / selftests / mqueue / Makefile
1 all:
2         gcc -O2 -lrt mq_open_tests.c -o mq_open_tests
3         gcc -O2 -lrt -lpthread -lpopt -o mq_perf_tests mq_perf_tests.c
4
5 run_tests:
6         @./mq_open_tests /test1 || echo "mq_open_tests: [FAIL]"
7         @./mq_perf_tests || echo "mq_perf_tests: [FAIL]"
8
9 clean:
10         rm -f mq_open_tests mq_perf_tests