From b3b932edfc86b89188e3275cb712e18e054613c8 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Tue, 10 Sep 2024 11:43:38 +0200 Subject: [PATCH] Actualizado Makefile --- Makefile | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 03f2d99..5182707 100644 --- a/Makefile +++ b/Makefile @@ -121,14 +121,13 @@ print-variables: @echo RM: $(RM) -raspi3: - $(CXX) $(SOURCES) -D NO_SHADERS -D ARCADE -D VERBOSE $(CXXFLAGS) -o $(TARGET_FILE) - strip -s -R .comment -R .gnu.version $(TARGET_FILE) --strip-unneeded - -raspi5: +raspi: $(CXX) $(SOURCES) -D ARCADE -D VERBOSE $(CXXFLAGS) $(LDFLAGS) -o $(TARGET_FILE) strip -s -R .comment -R .gnu.version $(TARGET_FILE) --strip-unneeded +raspi_debug: + $(CXX) $(SOURCES) -D ARCADE -D VERBOSE -D DEBUG $(CXXFLAGS_DEBUG) $(LDFLAGS) -o "$(TARGET_FILE)_debug" + windows: @echo off $(CXX) $(SOURCES) $(CXXFLAGS) $(LDFLAGS) -o "$(TARGET_FILE).exe" @@ -226,7 +225,6 @@ linux: linux_debug: $(CXX) $(SOURCES) -D DEBUG -D VERBOSE $(CXXFLAGS_DEBUG) $(LDFLAGS) -o "$(TARGET_FILE)_debug" - strip -s -R .comment -R .gnu.version "$(TARGET_FILE)_debug" --strip-unneeded linux_release: # Elimina carpetas previas