1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-09 23:45:36 +00:00

Adding support for parallel recursive compilation for the tests

This commit is contained in:
Guido Cossu 2016-11-07 11:13:43 +00:00
parent 96ba42a297
commit afc8d3e524
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ SUBDIRS = lib benchmarks tests
.PHONY: tests
tests:
make -C tests tests
$(MAKE) -C tests tests
AM_CXXFLAGS += -I$(top_builddir)/include
ACLOCAL_AMFLAGS = -I m4

View File

@ -9,4 +9,4 @@ endif
include Make.inc
subtests:
for d in $(SUBDIRS); do make -C $${d} tests; done
for d in $(SUBDIRS); do $(MAKE) -C $${d} tests; done