mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-28 08:24:56 +00:00
12 lines
263 B
Makefile
12 lines
263 B
Makefile
OBJ_TE=bin_te.o ../format/te/te.o
|
|
|
|
STATIC_OBJ+=${OBJ_TE}
|
|
TARGET_TE=bin_te.${EXT_SO}
|
|
#LINK+=-L../../util -lr_util $(SHLR)/sdb/src/libsdb.a
|
|
|
|
ALL_TARGETS+=${TARGET_TE}
|
|
|
|
${TARGET_TE}: ${OBJ_TE}
|
|
${CC} $(call libname,bin_te) ${CFLAGS} \
|
|
$(OBJ_TE) $(LINK) $(LDFLAGS)
|