diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-04 13:09:05 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-04 13:09:05 +0100 |
commit | 906d9a5356fe7b90fc14a9c0d6a0d65abb7e80a8 (patch) | |
tree | 3bc66c64240ee0b2cda71c1879169ff01e5cfc58 /tests/Makefile | |
parent | 39df9f197b987e0a2c564276d5b65a97f1fb2700 (diff) | |
download | SystDigit-Projet-906d9a5356fe7b90fc14a9c0d6a0d65abb7e80a8.tar.gz SystDigit-Projet-906d9a5356fe7b90fc14a9c0d6a0d65abb7e80a8.zip |
Document programs ; better time support in monitor.
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/tests/Makefile b/tests/Makefile index cf2f62f..02f1c9b 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,17 +1,25 @@ .SECONDARY: MINIJAZZ=../minijazz/mjc.byte -SCHED=../sched/main.native +SCHED=../sched/sched SIM=../csim/csim +MON=../monitor/mon -%.sim: %.dumb +%.mon: _build/%.dumb + $(MON) $(SIM) -rom decode7 decode7.rom $< + +%.sim: _build/%.dumb $(SIM) -n 12 $< -%.dumb %.snet %_opt.dumb %_opt.snet: %.net +_build/%.dumb _build/%.snet _build/%_opt.dumb _build/%_opt.snet: _build/%.net $(SCHED) $< -%.net: %.mj +_build/%.net: %.mj _build $(MINIJAZZ) $< + mv `basename -s .mj $<`.net _build + +_build: + mkdir _build clean: rm *.net |