1all: 2 gcc -O2 -lrt mq_open_tests.c -o mq_open_tests 3 4run_tests: 5 ./mq_open_tests /test1 6 7clean: 8 rm -f mq_open_tests 9