tizen 2.4 release
[profile/mobile/platform/kernel/linux-3.10-sc7730.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