rizin/libr/debug/p/Makefile
pancake/imac dfd884db74 * Initial steps to make osx-ppc debugger work
- 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
2010-02-22 02:42:29 +01:00

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