From 7f21f76d3ca7bd48375d404d2bd480f6e5c66db6 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Wed, 3 Jul 2024 12:30:04 +0200 Subject: [PATCH] Actualizado Makefile --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 28c328f..94da703 100644 --- a/Makefile +++ b/Makefile @@ -117,10 +117,14 @@ print-variables: @echo RM: $(RM) -raspi: +raspi3: $(CXX) $(SOURCES) -D RASPI $(CXXFLAGS) -lSDL2 -o $(TARGET_FILE) strip -s -R .comment -R .gnu.version $(TARGET_FILE) --strip-unneeded +raspi5: + $(CXX) $(SOURCES) -D VERBOSE $(CXXFLAGS) $(LDFLAGS) -o $(TARGET_FILE) + strip -s -R .comment -R .gnu.version $(TARGET_FILE) --strip-unneeded + windows: @echo off $(CXX) $(SOURCES) $(CXXFLAGS) -Wl,-subsystem,windows $(LDFLAGS) -o "$(TARGET_FILE).exe"