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

all:
	set -e; 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