mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-25 06:36:34 +00:00
16 lines
327 B
Makefile
16 lines
327 B
Makefile
# capstone
|
|
|
|
OBJ_MIPSCS=asm_mips_cs.o
|
|
|
|
include ${CURDIR}capstone.mk
|
|
|
|
STATIC_OBJ+=${OBJ_MIPSCS}
|
|
TARGET_MIPSCS=asm_mips_cs.${EXT_SO}
|
|
|
|
ifeq ($(WITHPIC),1)
|
|
ALL_TARGETS+=${TARGET_MIPSCS}
|
|
${TARGET_MIPSCS}: ${OBJ_MIPSCS}
|
|
${CC} $(call libname,asm_mips_cs) ${LDFLAGS} ${CFLAGS} \
|
|
-o ${TARGET_MIPSCS} ${OBJ_MIPSCS} ${CS_LDFLAGS}
|
|
endif
|