rizin/test/Makefile
2011-06-06 00:44:17 +02:00

12 lines
162 B
Makefile

T=asm echo write undo redo math
all: ${T}
${T}:
@cd t ; ./$@
@#@cd t ; for a in ${T} ; do ./$$a ; done
clean:
rm -f t/out.* t/rad.*
.PHONY: all ${T} clean