mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-12 23:46:36 +00:00
94f905cfe0
* ragg2 now works better - Show bitsize in ragg2 -L - Added a sample plugin for x86-64 osx shellcode - command can be configured, suid can be enabled * Minor fix in r_buf api --HG-- rename : man/rasc2.1 => binr/rasc2/rasc2.1
22 lines
387 B
Makefile
22 lines
387 B
Makefile
NAME=r_egg
|
|
DEPS=r_util r_asm r_syscall r_db
|
|
|
|
include ../config.mk
|
|
|
|
#OBJ+=p/x86_osx_binsh.o
|
|
OBJ=egg.o lang.o
|
|
OBJ+=emit_x86.o
|
|
OBJ+=emit_arm.o
|
|
OBJ+=emit_x64.o
|
|
OBJ+=emit_trace.o
|
|
|
|
include ${STATIC_EGG_PLUGINS}
|
|
OBJ+=$(subst ..,p/..,$(subst egg_,p/egg_,$(STATIC_OBJ)))
|
|
|
|
foo: ${LIBSO} ${LIBAR}
|
|
|
|
#plugins plugins:
|
|
# Do not build plugins. all are static @cd p && ${MAKE} all
|
|
|
|
include ../rules.mk
|