mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-03 20:22:38 +00:00
a9ad542ea6
- Added pseudo-instruction .arch - Improve label parsing - Dropped r_cmd dependency * r_bin - Fixed string address issue - Minor fixup in elf_specs.h * r_util - Removed '.' from isseparator
19 lines
355 B
Makefile
19 lines
355 B
Makefile
NAME=r_asm
|
|
DEPS=r_lib r_util
|
|
|
|
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
|