aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..66f1c9c
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+FLAGS_LINUX = -lGL -lSDL_image
+FLAGS_WIN32 = -lopengl32 -lmingw32 -lSDL2_Image
+FLAGS = -Wall -Werror -lSDL2main -lSDL2
+
+all:
+ @gcc src/main.cpp -o main $(FLAGS_LINUX) $(FLAGS)
+
+win32:
+ @gcc src/main.cpp -o main.exe $(FLAGS_WIN32) $(FLAGS)
+
+clean:
+ rm main*