From 1f9cc6bcbfda1c24f05cedef850c8e266f7f7ee1 Mon Sep 17 00:00:00 2001 From: drumsetmonkey Date: Wed, 9 Sep 2015 19:52:15 -0400 Subject: Fixed makefile for windows Just made my life easy by making sure it compiles everything in the src/ directory. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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* -- cgit v1.2.3