From 5a5bbf7f734f8b1dc78bbd8c24c265e49d75fefb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Valor=20Mart=C3=ADnez?= Date: Tue, 23 May 2023 17:28:40 +0200 Subject: [PATCH] Actualizado Makefile con windows_debug --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 6126fef..e13e0a2 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,10 @@ windows: g++ $(source) -std=c++11 -Wall -Os -lmingw32 -lws2_32 -lSDL2main -lSDL2 -ffunction-sections -fdata-sections -Wl,--gc-sections -static-libstdc++ -Wl,-subsystem,windows -o "$(executable).exe" strip -s -R .comment -R .gnu.version "$(executable).exe" --strip-unneeded +windows_debug: + @echo off + g++ $(source) -D DEBUG -std=c++11 -Wall -lmingw32 -lws2_32 -lSDL2main -lSDL2 -static-libstdc++ -o "$(executable)_debug.exe" + macos: clang++ $(source) -std=c++11 -Wall -Os -lSDL2 -ffunction-sections -fdata-sections -o "$(executable)"