Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: c095ba7224d8edc71dcef0d655911399a8bd4a3f authored by Linus Torvalds on 04 August 2013, 20:46:46 UTC
Linux 3.11-rc4
Tip revision: c095ba7
Makefile
all:
	gcc -O2 -lrt mq_open_tests.c -o mq_open_tests
	gcc -O2 -lrt -lpthread -lpopt -o mq_perf_tests mq_perf_tests.c

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
back to top