mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-11 00:06:19 +00:00
14 lines
305 B
Makefile
14 lines
305 B
Makefile
OBJ_PE=bin_pe.o bin_write_pe.o ../format/pe/pe.o ../format/pe/pe_write.o
|
|
#OBJ_PE+=../format/pe/dotnet.o
|
|
|
|
STATIC_OBJ+=${OBJ_PE}
|
|
TARGET_PE=bin_pe.${EXT_SO}
|
|
|
|
ifeq (${WITHPIC},1)
|
|
ALL_TARGETS+=${TARGET_PE}
|
|
|
|
${TARGET_PE}: ${OBJ_PE}
|
|
-${CC} $(call libname,bin_pe) ${CFLAGS} \
|
|
$(OBJ_PE) $(LINK) $(LDFLAGS)
|
|
endif
|