PSX Plugin: Deleted useless file PSX Plugin: Adjusted coding style, minor fixes PSX Plugin: Removed typo, adjusted makefile, call check_bytes with correct parameters
12 lines
257 B
Makefile
12 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
|