aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2015-09-09 19:52:15 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2015-09-09 19:52:15 -0400
commit1f9cc6bcbfda1c24f05cedef850c8e266f7f7ee1 (patch)
tree8e05214c24ffe35ceb316d649b05459bf27af0be
parentaf49aebdb758f5359bf5ebbc7a1b8ae94cdb9014 (diff)
Fixed makefile for windows
Just made my life easy by making sure it compiles everything in the src/ directory.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 60d784f..5398f5f 100644
--- a/Makefile
+++ b/Makefile
@@ -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*