mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-18 21:28:15 +00:00
11 lines
209 B
Makefile
11 lines
209 B
Makefile
OBJ_PE=bin_pe.o ../format/pe/pe.o
|
|
|
|
STATIC_OBJ+=${OBJ_PE}
|
|
TARGET_PE=bin_pe.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_PE}
|
|
|
|
${TARGET_PE}: ${OBJ_PE}
|
|
-${CC} $(call libname,bin_pe) ${CFLAGS} \
|
|
$(OBJ_PE) $(LINK) $(LDFLAGS)
|