mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-10 07:21:55 +00:00
13 lines
258 B
Makefile
13 lines
258 B
Makefile
OBJ_PE64=bin_pe64.o ../format/pe/pe64.o
|
|
|
|
STATIC_OBJ+=${OBJ_PE64}
|
|
TARGET_PE64=bin_pe64.${EXT_SO}
|
|
|
|
ifeq (${WITHPIC},1)
|
|
ALL_TARGETS+=${TARGET_PE64}
|
|
|
|
${TARGET_PE64}: ${OBJ_PE64}
|
|
-${CC} $(call libname,bin_pe64) ${CFLAGS} \
|
|
$(OBJ_PE64) $(LINK) $(LDFLAGS)
|
|
endif
|