aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAndy Belle-Isle <abelleisle@roadrunner.com>2015-09-07 11:01:56 -0400
committerAndy Belle-Isle <abelleisle@roadrunner.com>2015-09-07 11:01:56 -0400
commit7fcfe07e21363ec9cfacf05370585641e0bcb5ee (patch)
treefcdd00395d477e0064bca939525b3c261a3b23e2 /Makefile
parente33069cc0f270c45e80c1ee2e6beafef1c262ec6 (diff)
New SDL Headers
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8a814d7..85f2a82 100644
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,12 @@
FLAGS_LINUX = -lGL -lSDL_image
-FLAGS_WIN32 = -lopengl32 -lmingw32 -lSDL2_Image
+FLAGS_WIN32 = -lopengl32 -lmingw32 #-lSDL2_Image
FLAGS = -m32 -Iinclude -Wall -Werror -lSDL2main -lSDL2
all:
@g++ src/main.cpp -o main $(FLAGS_LINUX) $(FLAGS)
win32:
- @g++ src/main.cpp -o main.exe $(FLAGS_WIN32) $(FLAGS)
+ @g++ -L lib/ src/main.cpp -o main.exe $(FLAGS_WIN32) $(FLAGS)
clean:
rm main*