Linux 3.12.70
[linux/fpc-iii.git] / tools / testing / selftests / mqueue / Makefile
blob218a122c795150458e04a555011bf9337b29c27d
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
5 run_tests:
6 @./mq_open_tests /test1 || echo "mq_open_tests: [FAIL]"
7 @./mq_perf_tests || echo "mq_perf_tests: [FAIL]"
9 clean:
10 rm -f mq_open_tests mq_perf_tests