mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-14 16:59:08 +00:00
11 lines
259 B
Makefile
11 lines
259 B
Makefile
OBJ_ZIMG=bin_zimg.o ../format/zimg/zimg.o
|
|
|
|
STATIC_OBJ+=${OBJ_ZIMG}
|
|
TARGET_ZIMG=bin_zimg.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_ZIMG}
|
|
|
|
${TARGET_ZIMG}: ${OBJ_ZIMG}
|
|
${CC} $(call libname,bin_zimg) -shared ${CFLAGS} \
|
|
-o ${TARGET_ZIMG} ${OBJ_ZIMG} $(LINK) $(LDFLAGS)
|