mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-14 16:59:08 +00:00
0d4faf652e
- Registers for which version of core was compiled * Use tar --format=posix when GNU tar - Fixes the dependency on BSD systems * Fix in doc/fortunes * Fix this class pointer in asm_java * Re-Fix uglily the bin_elf strtab issue (needs more work) * Fix Vala regression in r_asm.vapi
22 lines
483 B
Makefile
22 lines
483 B
Makefile
CFLAGS+=-Ip/librapwrap/include
|
|
ifeq (${OSTYPE},windows)
|
|
LDFLAGS+=-lwsock32
|
|
endif
|
|
ifeq (${OSTYPE},solaris)
|
|
LDFLAGS+=-lsocket
|
|
endif
|
|
|
|
OBJ_RAP=debug_rap.o
|
|
#librapwrap/rapwrapper.o
|
|
|
|
#librapwrap/rapwrapper.o:
|
|
# ${CC} -c ${CFLAGS} ${LDFLAGS} -o p/librapwrap/rapwrapper.o p/librapwrap/rapwrapper.c
|
|
|
|
STATIC_OBJ+=${OBJ_RAP}
|
|
TARGET_RAP=debug_rap.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_RAP}
|
|
|
|
${TARGET_RAP}: ${OBJ_RAP}
|
|
${CC} $(call libname,debug_rap) ${OBJ_RAP} ${CFLAGS} ${LDFLAGS} -o ${TARGET_RAP}
|