From 643129b8506c6fb5dfad5f3067d57ffec19c59a7 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Sat, 3 Sep 2022 14:36:53 +0200 Subject: [PATCH] Actualizado Makefile --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 6c5ed8e..f7b40f8 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,8 @@ executable = jaildoctors_dilemma +windows: + mkdir bin + g++ -std=c++11 -Wall -O2 -lSDL2 -lmingw32 -lSDL2main -mwindows source/*.cpp -o bin/$(executable).exe macos: mkdir -p bin g++ -std=c++11 -Wall -O2 source/*.cpp -o bin/$(executable)_macos -lSDL2