From d08f44cfd74c5c38f999196db26d90c8a2944341 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 1 Jul 2017 11:09:48 +0200 Subject: [PATCH] Update Makefile --- Makefile.libretro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.libretro b/Makefile.libretro index e92212b..0ec47b3 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -366,6 +366,7 @@ ifeq ($(platform), psp1) INCFLAGS += -I$(shell psp-config --pspsdk-path)/include endif +OBJOUT = -o LINKOUT = -o ifneq (,$(findstring msvc,$(platform))) @@ -391,7 +392,7 @@ else endif %.o: %.c - $(CC) -c -o $@ $< $(CFLAGS) $(INCFLAGS) + $(CC) -c $(OBJOUT)$@ $< $(CFLAGS) $(INCFLAGS) clean-objs: rm -f $(OBJECTS)