- Use 'asm.arch=ppc' in POWERPC by default
- Added r_io_mach for MACH microkernel debugging
- Compiled as static plugin by default
- Added darwin mach/ptrace stuff in debug_native
- Very ugly code.. needs some refactoring
- Add powerpc-OSX registers description map
- Added temporally .h files in debug/p/native
* Display verboser version message with 'r2 -V'
* More linking issues fixed for OSX
* Build gdbwrap debugger plugin
- Not yet usable
* Added R_SYS_OS R_SYS_ARCH and R_SYS_ENDIAN strings
* Deprecate DEBUGGER variable
21 lines
331 B
Makefile
21 lines
331 B
Makefile
include ../../config.mk
|
|
|
|
CFLAGS=-I../../include -Wall ${PIC_FLAGS} ${LDFLAGS_LIB} ${LDFLAGS_LINKPATH}.. -DCORELIB
|
|
|
|
foo: all
|
|
|
|
ALL_TARGETS=
|
|
DEBUGS=native.mk gdb.mk
|
|
include $(DEBUGS)
|
|
|
|
#all: pre ${ALL_TARGETS}
|
|
all: ${ALL_TARGETS}
|
|
@true
|
|
|
|
pre:
|
|
@cd libgdbwrap && ${MAKE}
|
|
|
|
clean:
|
|
-rm -f *.${EXT_SO} *.o ${STATIC_OBJ}
|
|
|
|
.PHONY: all clean
|