mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-01 09:00:46 +00:00
e6f2cd0b2a
$ git grep ' $' | grep -v ^test/ | cut -d : -f 1 | sort -u > /tmp/trailing $ for a in `cat /tmp/trailing` ; do sed -i -e 's/ *$//' $a ; done
19 lines
434 B
Makefile
19 lines
434 B
Makefile
# capstone
|
|
|
|
OBJ_PPCCS=asm_ppc_cs.o ../arch/ppc/libvle/vle.o ../arch/ppc/libps/libps.o
|
|
|
|
include ${CURDIR}capstone.mk
|
|
|
|
STATIC_OBJ+=${OBJ_PPCCS}
|
|
SHARED_OBJ+=$(addprefix ../,${SHARED_PPCCS})
|
|
TARGET_PPCCS=asm_ppc_cs.${EXT_SO}
|
|
|
|
ifeq ($(WITHPIC),1)
|
|
ALL_TARGETS+=${TARGET_PPCCS}
|
|
|
|
${TARGET_PPCCS}: ${OBJ_PPCCS}
|
|
${CC} -o ${TARGET_PPCCS} ${OBJ_PPCCS} \
|
|
$(call libname,asm_ppc_cs) ${LDFLAGS} ${CFLAGS} \
|
|
${SHARED2_PPCCS} ${CS_LDFLAGS}
|
|
endif
|