mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-01 00:51:19 +00:00
0a14411bc1
* Add -O flag to ragg2 as an alias for -o a.out or -o <file> (without extension) * Add rabin2 -M (get main) for Java Class files * Add emit_trace (code tracer) for r_egg. useful to debug - ragg2 -a trace hello.r - Add emit->jmp() function pointer and emit->retvar - many fixes in function calls and definitions - Added support for 'break;' 'break();' and 'goto();' - Added .ret variable as an alias for eax, rax or r0
10 lines
143 B
Makefile
10 lines
143 B
Makefile
NAME=r_egg
|
|
DEPS=r_util r_asm r_syscall
|
|
OBJ=egg.o lang.o
|
|
OBJ+=emit_x86.o
|
|
OBJ+=emit_arm.o
|
|
OBJ+=emit_x64.o
|
|
OBJ+=emit_trace.o
|
|
|
|
include ../rules.mk
|