]> code.bitgloo.com Git - clyne/gamedev.git/commitdiff
Fixed makefile for windows
authordrumsetmonkey <abelleisle@roadrunner.com>
Wed, 9 Sep 2015 23:52:15 +0000 (19:52 -0400)
committerdrumsetmonkey <abelleisle@roadrunner.com>
Wed, 9 Sep 2015 23:52:15 +0000 (19:52 -0400)
Just made my life easy by making sure it compiles everything in the src/ directory.

Makefile

index 60d784fb4bf8e3193df9edefc71112899b6ea533..5398f5fd618f91ff315906c372792b5d96118dad 100644 (file)
--- 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*