mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-29 09:13:19 +00:00
12 lines
243 B
Makefile
12 lines
243 B
Makefile
OBJ_MCS96=asm_mcs96.o
|
|
|
|
STATIC_OBJ+=${OBJ_MCS96}
|
|
TARGET_MCS96=asm_mcs96.${EXT_SO}
|
|
|
|
ifeq ($(WITHPIC),1)
|
|
ALL_TARGETS+=${TARGET_MCS96}
|
|
|
|
${TARGET_MCS96}: ${OBJ_MCS96}
|
|
${CC} ${call libname,asm_mcs96} ${CFLAGS} -o ${TARGET_MCS96} ${OBJ_MCS96}
|
|
endif
|