mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-11 08:16:07 +00:00
11 lines
232 B
Makefile
11 lines
232 B
Makefile
OBJ_PEBBLE=bin_pebble.o
|
|
|
|
STATIC_OBJ+=${OBJ_PEBBLE}
|
|
TARGET_PEBBLE=bin_pebble.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_PEBBLE}
|
|
|
|
${TARGET_PEBBLE}: ${OBJ_PEBBLE}
|
|
-${CC} $(call libname,bin_pebble) ${CFLAGS} \
|
|
$(OBJ_PEBBLE) $(LINK) $(LDFLAGS)
|