Files
linux-kernelorg-stable/tools/testing/selftests/mqueue/Makefile
T

11 lines
212 B
Makefile
Raw Normal View History

2012-05-31 16:26:34 -07:00
all:
gcc -O2 -lrt mq_open_tests.c -o mq_open_tests
2012-05-31 16:26:37 -07:00
gcc -O2 -lrt -lpthread -lpopt -o mq_perf_tests mq_perf_tests.c
2012-05-31 16:26:34 -07:00
run_tests:
./mq_open_tests /test1
2012-05-31 16:26:37 -07:00
./mq_perf_tests
2012-05-31 16:26:34 -07:00
clean:
2012-05-31 16:26:37 -07:00
rm -f mq_open_tests mq_perf_tests