M7350/kernel/tools/testing/selftests/mqueue/Makefile

11 lines
278 B
Makefile
Raw Permalink Normal View History

2024-09-09 08:57:42 +00:00
all:
gcc -O2 mq_open_tests.c -o mq_open_tests -lrt
gcc -O2 -o mq_perf_tests mq_perf_tests.c -lrt -lpthread -lpopt
run_tests:
@./mq_open_tests /test1 || echo "mq_open_tests: [FAIL]"
@./mq_perf_tests || echo "mq_perf_tests: [FAIL]"
clean:
rm -f mq_open_tests mq_perf_tests