mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-23 22:36:27 +00:00
11 lines
225 B
Makefile
11 lines
225 B
Makefile
OBJ_DEX=bin_dex.o ../format/dex/dex.o
|
|
|
|
STATIC_OBJ+=${OBJ_DEX}
|
|
TARGET_DEX=bin_dex.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_DEX}
|
|
|
|
${TARGET_DEX}: ${OBJ_DEX}
|
|
${CC} -shared ${CFLAGS} -o ${TARGET_DEX} ${OBJ_DEX}
|
|
@#strip -s ${TARGET_DEX}
|