mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-12 09:38:20 +00:00
![pancake](/assets/img/avatar_default.png)
- e io.cache=true - Fixes support for overlapped changes - Implement cache_list - We can merge it to remove vm and undo writes with this * Some code cleanup in vm * Fix division by 0 bug notified by @ash * Some random makefile cleanup
23 lines
427 B
Makefile
23 lines
427 B
Makefile
NAME=r_bin
|
|
DEPS=r_lib r_util
|
|
|
|
include ../config.mk
|
|
|
|
foo: pre libr_bin.${EXT_SO} libr_bin.${EXT_AR} plugins
|
|
|
|
# XXX
|
|
CFLAGS+=-DCORELIB -Iformat
|
|
|
|
include ../config.mk
|
|
include ${STATIC_BIN_PLUGINS}
|
|
STATIC_OBJS=$(subst ..,p/..,$(subst bin_,p/bin_,$(STATIC_OBJ)))
|
|
OBJ=bin.o bin_meta.o bin_write.o ${STATIC_OBJS}
|
|
|
|
pre:
|
|
if [ ! -e libr_bin.${EXT_SO} ]; then rm -f ${STATIC_OBJS} ; fi
|
|
|
|
plugins:
|
|
cd p && ${MAKE} all
|
|
|
|
include ../rules.mk
|