From 4530431aaa1e1d5383d0c922e069769da45bcf98 Mon Sep 17 00:00:00 2001 From: sonninnos Date: Wed, 30 Mar 2022 11:59:24 +0300 Subject: [PATCH] Makefile correction --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 551075285f..aec7f7a5d5 100644 --- a/Makefile +++ b/Makefile @@ -432,7 +432,7 @@ ifeq ($(platform), emscripten) $(CXX) -r $(SHARED) -o $@ $(OBJECTS) $(LDFLAGS) else ifeq ($(STATIC_LINKING), 1) $(AR) rcs $@ $(OBJECTS) -#STATIC_LINKING=1 and additional Makefile.common sources are incopatible for PS3 environment +#STATIC_LINKING=1 and additional Makefile.common sources are incompatible for PS3 environment else ifeq ($(platform), ps3) $(AR) rcs $@ $(OBJECTS) else @@ -440,13 +440,13 @@ else endif %.o: %.c - $(CC) $(CFLAGS) -c $^ -o $@ + $(CC) $(CFLAGS) -c -o $@ $< %.o: %.cpp - $(CXX) $(CXXFLAGS) -c $^ -o $@ + $(CXX) $(CXXFLAGS) -c -o $@ $< %.o: %.cc - $(CXX) $(CXXFLAGS) -c $^ -o $@ + $(CXX) $(CXXFLAGS) -c -o $@ $< -include $(OBJECT_DEPS)