radare2/libr/asm/Makefile
pancake 098b1ba127 * Implement input and output filters for rasm2
- 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
2011-10-05 02:38:37 +02:00

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