radare2/libr/bin/p/psxexe.mk
Dax 412934d20e Initial PSX Executable Support
PSX Plugin: Deleted useless file
PSX Plugin: Adjusted coding style, minor fixes
PSX Plugin: Removed typo, adjusted makefile, call check_bytes with correct parameters
2015-11-23 20:56:19 +01:00

13 lines
257 B
Makefile

OBJ_PSXEXE=bin_psxexe.o
STATIC_OBJ+=${OBJ_PSXEXE}
TARGET_PSXEXE=bin_psxexe.${EXT_SO}
ifeq (${WITHPIC},1)
ALL_TARGETS+=${TARGET_PSXEXE}
${TARGET_PSXEXE}: ${OBJ_PSXEXE}
-${CC} $(call libname,bin_psxexe) ${CFLAGS} \
$(OBJ_PSXEXE) $(LINK) $(LDFLAGS)
endif