radare2/libr/asm/Makefile
Nibble 44ecdbb636 * r_asm
- Added pseudo-instruction support using r_cmd
  - Added .byte
* r_util_str
  - Added r_str_trim
* r_cmd
  - Fixed r_cmd.h
2009-04-11 18:49:09 +02:00

19 lines
361 B
Makefile

NAME=r_asm
DEPS=r_lib r_util r_cmd
foo: pre libr_asm.so plugins
CFLAGS+=-DCORELIB -Iarch/include -Iarch
include ../config.mk
include ${STATIC_ASM_PLUGINS}
STATIC_OBJS=$(subst ..,p/..,$(subst asm_,p/asm_,$(STATIC_OBJ)))
OBJ=asm.o ${STATIC_OBJS}
pre:
if [ ! -e libr_asm.so ]; then rm -f ${STATIC_OBJS} ; fi
plugins:
cd p && ${MAKE} all
include ../rules.mk