mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-14 16:59:08 +00:00
13 lines
235 B
Makefile
13 lines
235 B
Makefile
OBJ_PE=bin_pe.o ../format/pe/pe.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
|