mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-17 03:13:16 +00:00
6c28274aa0
- Prefix all plugins with 'io_' (like in the rest of libs) - Statify io_dbg and io_ptrace IO plugins * Added _free methods for r_io and r_debug. Oops * Initial dummy version of r_debug.vapi * More stuff in the debug/t/main.c (not yet working) * Better hg-miss missing file detection checks --HG-- rename : libr/io/p/dbg.c => libr/io/p/io_dbg.c rename : libr/io/p/ewf.c => libr/io/p/io_ewf.c rename : libr/io/p/malloc.c => libr/io/p/io_malloc.c rename : libr/io/p/ptrace.c => libr/io/p/io_ptrace.c rename : libr/io/p/shm.c => libr/io/p/io_shm.c
26 lines
454 B
Makefile
26 lines
454 B
Makefile
NAME=r_asm
|
|
DEPS=r_lib r_util
|
|
CFLAGS+=-DCORELIB -Iarch/include -Iarch
|
|
|
|
foo: pre libr_asm.so plugins
|
|
|
|
include ../config.mk
|
|
include ${STATIC_ASM_PLUGINS}
|
|
STATIC_OBJS=$(subst ..,p/..,$(subst asm_,p/asm_,$(STATIC_OBJ)))
|
|
OBJ=${STATIC_OBJS} asm.o
|
|
|
|
pre:
|
|
@if [ ! -e libr_asm.so ]; then rm -f ${STATIC_OBJS} ; fi
|
|
|
|
re:
|
|
rm -f asm.o libr_asm.so
|
|
${MAKE}
|
|
rm -f t/fastcall.o
|
|
sudo ${MAKE} install
|
|
cd t && ${MAKE}
|
|
|
|
plugins:
|
|
cd p && ${MAKE} all
|
|
|
|
include ../rules.mk
|