2008-09-28 03:52:23 +08:00
|
|
|
ANT = ant
|
2008-09-15 23:53:53 +08:00
|
|
|
CBC = ../bin/cbc
|
2008-09-23 21:45:54 +08:00
|
|
|
CBFLAGS =
|
2008-09-15 23:53:53 +08:00
|
|
|
|
|
|
|
.SUFFIXES:
|
|
|
|
.SUFFIXES: .cb .
|
|
|
|
|
|
|
|
.cb:
|
2008-09-23 21:45:54 +08:00
|
|
|
$(CBC) $(CBFLAGS) $<
|
2008-01-03 19:26:07 +08:00
|
|
|
|
2008-09-21 04:43:34 +08:00
|
|
|
default: compile
|
|
|
|
|
2008-01-05 07:00:28 +08:00
|
|
|
test:
|
2008-08-29 16:05:09 +08:00
|
|
|
./run.sh
|
2007-12-24 16:19:51 +08:00
|
|
|
|
2008-01-14 23:30:45 +08:00
|
|
|
compile:
|
|
|
|
cd .. && $(ANT) compile
|
|
|
|
|
2008-01-03 19:26:07 +08:00
|
|
|
recompile:
|
2008-01-14 23:09:51 +08:00
|
|
|
cd .. && $(ANT) recompile
|
2008-01-03 19:26:07 +08:00
|
|
|
|
2008-01-14 23:30:45 +08:00
|
|
|
comptest: recompile test
|
2008-01-05 07:00:28 +08:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.s *.o `svn pget svn:ignore .`
|