mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
13 lines
193 B
Makefile
13 lines
193 B
Makefile
SUBDIRS = core forces hmc solver debug
|
|
|
|
if BUILD_CHROMA_REGRESSION
|
|
SUBDIRS+= qdpxx
|
|
endif
|
|
|
|
.PHONY: subtests
|
|
|
|
include Make.inc
|
|
|
|
subtests:
|
|
for d in $(SUBDIRS); do $(MAKE) -C $${d} tests; done
|