mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-28 08:24:56 +00:00
11 lines
237 B
Makefile
11 lines
237 B
Makefile
OBJ_BIOS=bin_bios.o
|
|
|
|
STATIC_OBJ+=${OBJ_BIOS}
|
|
TARGET_BIOS=bin_bios.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_BIOS}
|
|
|
|
${TARGET_BIOS}: ${OBJ_BIOS}
|
|
${CC} $(call libname,bin_bios) -shared ${CFLAGS} \
|
|
-o ${TARGET_BIOS} ${OBJ_BIOS} $(LINK) $(LDFLAGS)
|