diff options
author | Andy Belle-Isle <abelleisle@roadrunner.com> | 2015-09-07 11:01:56 -0400 |
---|---|---|
committer | Andy Belle-Isle <abelleisle@roadrunner.com> | 2015-09-07 11:01:56 -0400 |
commit | 7fcfe07e21363ec9cfacf05370585641e0bcb5ee (patch) | |
tree | fcdd00395d477e0064bca939525b3c261a3b23e2 /Makefile | |
parent | e33069cc0f270c45e80c1ee2e6beafef1c262ec6 (diff) |
New SDL Headers
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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* |