diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2015-09-09 19:52:15 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2015-09-09 19:52:15 -0400 |
commit | 1f9cc6bcbfda1c24f05cedef850c8e266f7f7ee1 (patch) | |
tree | 8e05214c24ffe35ceb316d649b05459bf27af0be | |
parent | af49aebdb758f5359bf5ebbc7a1b8ae94cdb9014 (diff) |
Fixed makefile for windows
Just made my life easy by making sure it compiles everything in the src/ directory.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ all: @g++ src/*.cpp -o main $(FLAGS_LINUX) $(FLAGS) win32: - @g++ -L lib/ src/main.cpp src/UIClass.cpp src/windowClass.cpp src/Quest.cpp -o main.exe $(FLAGS_WIN32) $(FLAGS) + @g++ -L lib/ src/*.cpp -o main.exe $(FLAGS_WIN32) $(FLAGS) clean: rm main* |