mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-30 01:44:50 +00:00
12 lines
258 B
Makefile
12 lines
258 B
Makefile
OBJ_TE=bin_te.o ../format/te/te.o
|
|
|
|
STATIC_OBJ+=${OBJ_TE}
|
|
TARGET_TE=bin_te.${EXT_SO}
|
|
LINK+=-L../../db -lr_db $(SHLR)/sdb/src/libsdb.a
|
|
|
|
ALL_TARGETS+=${TARGET_TE}
|
|
|
|
${TARGET_TE}: ${OBJ_TE}
|
|
${CC} $(call libname,bin_te) ${CFLAGS} \
|
|
$(OBJ_TE) $(LINK) $(LDFLAGS)
|