From: drumsetmonkey Date: Wed, 9 Sep 2015 23:52:15 +0000 (-0400) Subject: Fixed makefile for windows X-Git-Url: https://code.bitgloo.com/?a=commitdiff_plain;h=1f9cc6bcbfda1c24f05cedef850c8e266f7f7ee1;p=clyne%2Fgamedev.git Fixed makefile for windows Just made my life easy by making sure it compiles everything in the src/ directory. --- 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*