mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-02 03:00:35 +00:00
12 lines
229 B
Makefile
12 lines
229 B
Makefile
|
OBJ_PPC=asm_ppc.o
|
||
|
OBJ_PPC+=../arch/ppc/ppc_disasm/ppc_disasm.o
|
||
|
|
||
|
STATIC_OBJ+=${OBJ_PPC}
|
||
|
TARGET_PPC=asm_ppc.so
|
||
|
|
||
|
ALL_TARGETS+=${TARGET_PPC}
|
||
|
|
||
|
${TARGET_PPC}: ${OBJ_PPC}
|
||
|
${CC} ${CFLAGS} -o asm_ppc.so ${OBJ_PPC}
|
||
|
@#strip -s asm_x86.so
|