blob: 10826654108bcf5f79f5f8573314e1aeed801127 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Makefile for testing Icon
# The default is to run all tests, using icont.
Test Test-icont: ; cd general; $(MAKE) Test
Samples Samples-icont: ; cd general; $(MAKE) Samples
Test-iconc: ; cd general; $(MAKE) Test-iconc
Samples-iconc: ; cd general; $(MAKE) Samples-iconc
# Clean up.
Clean Pure:
cd bench; $(MAKE) Clean
cd general; $(MAKE) Clean
cd special; $(MAKE) Clean
|