mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-11 15:04:23 +00:00
11 lines
212 B
Makefile
11 lines
212 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} -shared ${CFLAGS} -o ${TARGET_PE} ${OBJ_PE}
|
|
@#strip -s ${TARGET_PE}
|