mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-08 22:30:30 +00:00
c83d0e0c5f
* implement ppc assembler plugin * reuse code * update .travis.yml & Dockerfile * support arm.as big endian
13 lines
269 B
Makefile
13 lines
269 B
Makefile
OBJ_PPC_AS=asm_ppc_as.o
|
|
|
|
STATIC_OBJ+=${OBJ_PPC_AS}
|
|
TARGET_PPC_AS=asm_ppc_as.${EXT_SO}
|
|
|
|
ifeq ($(WITHPIC),1)
|
|
ALL_TARGETS+=${TARGET_PPC_AS}
|
|
|
|
${TARGET_PPC_AS}: ${OBJ_PPC_AS}
|
|
${CC} $(call libname,asm_ppc_as) ${LDFLAGS} ${CFLAGS} \
|
|
-o ${TARGET_PPC_AS} ${OBJ_PPC_AS}
|
|
endif
|