aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile
blob: 6e9a78d8d7212a8b6ede71616280a99e1f27ca98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
DIRS=c compression raytracer spass regression

all:
	for i in $(DIRS); do $(MAKE) CCOMPOPTS='$(CCOMPOPTS)' -C $$i all; done

test:
	set -e; for i in $(DIRS); do $(MAKE) SIMU='$(SIMU)' -C $$i test; done

bench:
	for i in $(DIRS); do $(MAKE) -C $$i bench; done

clean:
	for i in $(DIRS); do $(MAKE) -C $$i clean; done