13 lines
386 B
Makefile
13 lines
386 B
Makefile
OBJ_propeller=anal_propeller.o
|
|
CFLAGS+=-I../asm/arch/propeller/
|
|
|
|
STATIC_OBJ+=${OBJ_propeller}
|
|
OBJ_propeller+=../../asm/arch/propeller/propeller_disas.o
|
|
TARGET_propeller=anal_propeller.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_propeller}
|
|
|
|
${TARGET_propeller}: ${OBJ_propeller} ${SHARED_OBJ}
|
|
$(call pwd)
|
|
${CC} $(call libname,anal_propeller) ${CFLAGS} \
|
|
-o ${TARGET_propeller} ${OBJ_propeller}
|