mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-29 08:01:04 +00:00
11 lines
270 B
Makefile
11 lines
270 B
Makefile
OBJ_BOOTIMG=bin_bootimg.o
|
|
|
|
STATIC_OBJ+=${OBJ_BOOTIMG}
|
|
TARGET_BOOTIMG=bin_bootimg.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_BOOTIMG}
|
|
|
|
${TARGET_BOOTIMG}: ${OBJ_BOOTIMG}
|
|
${CC} $(call libname,bin_bootimg) -shared ${CFLAGS} \
|
|
-o ${TARGET_BOOTIMG} ${OBJ_BOOTIMG} $(LINK) $(LDFLAGS)
|