mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-03 20:22:38 +00:00
098b1ba127
- Experimental.. not yet ready for release - Add rasm2 -F flag to specify input and output filters $ rasm2 -F att2intel * Add new att2intel r_parse plugin - make mrproper required * Initial implementation of RBinClass - Only experimental and Java-specific atm - Add rabin2 -C to display classes * Optimize some r_str functions
25 lines
489 B
Makefile
25 lines
489 B
Makefile
NAME=r_asm
|
|
DEPS=r_lib r_util r_parse
|
|
CFLAGS+=-DCORELIB -Iarch/include -Iarch
|
|
|
|
include ../config.mk
|
|
|
|
foo: pre ${LIBSO} ${LIBAR} plugins
|
|
|
|
include ${STATIC_ASM_PLUGINS}
|
|
STATIC_OBJS=$(subst ..,p/..,$(subst asm_,p/asm_,$(STATIC_OBJ)))
|
|
OBJ=${STATIC_OBJS} asm.o code.o
|
|
|
|
pre:
|
|
@if [ ! -e libr_asm.${EXT_SO} ]; then if [ ! -e libr_asm.${EXT_AR} ]; then rm -f ${STATIC_OBJS} ; fi ; fi
|
|
|
|
re:
|
|
rm -f asm.o libr_asm.so
|
|
${MAKE}
|
|
sudo ${MAKE} install
|
|
|
|
plugins:
|
|
@cd p && ${MAKE} all
|
|
|
|
include ../rules.mk
|