Cleanup: update code layout to fix old gcc warning
[urcu.git] / tests / Makefile.am
1 SUBDIRS = utils common unit benchmark regression
2
3 .PHONY: short_bench long_bench regtest check-loop
4
5 short_bench:
6 cd benchmark && $(MAKE) $(AM_MAKEFLAGS) short_bench
7 long_bench:
8 cd benchmark && $(MAKE) $(AM_MAKEFLAGS) long_bench
9 regtest:
10 cd regression && $(MAKE) $(AM_MAKEFLAGS) regtest
11 cd benchmark && $(MAKE) $(AM_MAKEFLAGS) regtest
12
13 check-loop:
14 while [ 0 ]; do \
15 $(MAKE) $(AM_MAKEFLAGS) check; \
16 if [ "$$?" != "0" ]; then \
17 break; \
18 fi \
19 done
This page took 0.029235 seconds and 4 git commands to generate.