radare2/libr/egg/Makefile
pancake 0a14411bc1 * Added README documentation for libr/egg programming language
* 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
2011-09-19 02:39:33 +02:00

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