summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CallbackDispatcher.cpp2
-rw-r--r--Makefile8
-rw-r--r--enum2string.cpp2
-rw-r--r--main.cpp2
-rw-r--r--utils.cpp2
5 files changed, 8 insertions, 8 deletions
diff --git a/CallbackDispatcher.cpp b/CallbackDispatcher.cpp
index 12b4906..489995b 100644
--- a/CallbackDispatcher.cpp
+++ b/CallbackDispatcher.cpp
@@ -5,7 +5,7 @@
5 License : Public domain 5 License : Public domain
6*/ 6*/
7 7
8#include "../../Open Steamworks/Steamworks.h" 8#include "Open Steamworks/Steamworks.h"
9#include <map> 9#include <map>
10 10
11extern HSteamPipe g_hPipe; 11extern HSteamPipe g_hPipe;
diff --git a/Makefile b/Makefile
index b5ce903..bc76765 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,14 @@
1NAME = UpdateTool 1NAME = UpdateTool
2 2
3CXX = g++ 3CXX = g++
4CFLAGS = -O3 -I"/cygdrive/c/C++/ModuleScanner/include" -fvisibility=hidden -fvisibility-inlines-hidden 4CFLAGS = -m32 -I../open-steamworks -DSTEAMWORKS_CLIENT_INTERFACES -fvisibility=hidden -fvisibility-inlines-hidden
5LDFLAGS = -ldl -lpthread /cygdrive/c/C++/ModuleScanner/Linux/ModuleScanner.a ../../Resources/Libs/Linux32/steamclient.a 5LDFLAGS = -m32 -ldl -lpthread ../open-steamworks/Resources/Libs/Linux32/steamclient.a
6SRC = $(wildcard *.cpp) 6SRC = $(wildcard *.cpp)
7OBJ_DIR = Objs 7OBJ_DIR = Objs
8OBJ = $(addprefix $(OBJ_DIR)/, $(SRC:.cpp=.o)) 8OBJ = $(addprefix $(OBJ_DIR)/, $(SRC:.cpp=.o))
9 9
10all: dirs $(NAME) 10all: dirs $(NAME)
11 11
12dirs: 12dirs:
13 mkdir -p $(OBJ_DIR) 13 mkdir -p $(OBJ_DIR)
14 14
@@ -22,4 +22,4 @@ clean:
22 rm -rf $(OBJ_DIR)/*.o 22 rm -rf $(OBJ_DIR)/*.o
23 23
24mrproper: clean 24mrproper: clean
25 rm -f $(NAME) \ No newline at end of file 25 rm -f $(NAME)
diff --git a/enum2string.cpp b/enum2string.cpp
index 870aeba..62c34e8 100644
--- a/enum2string.cpp
+++ b/enum2string.cpp
@@ -5,7 +5,7 @@
5 License : Public domain 5 License : Public domain
6*/ 6*/
7 7
8#include "../../Open Steamworks/Steamworks.h" 8#include "Open Steamworks/Steamworks.h"
9 9
10const char* AppState2String(EAppState eState) 10const char* AppState2String(EAppState eState)
11{ 11{
diff --git a/main.cpp b/main.cpp
index db06f63..ea6bd0b 100644
--- a/main.cpp
+++ b/main.cpp
@@ -10,7 +10,7 @@
10 10
11#include "CCommandLine.h" 11#include "CCommandLine.h"
12 12
13#include "../../Open Steamworks/Steamworks.h" 13#include "Open Steamworks/Steamworks.h"
14#include "enum2string.h" 14#include "enum2string.h"
15#include "utils.h" 15#include "utils.h"
16 16
diff --git a/utils.cpp b/utils.cpp
index 1a82531..fbbc3ec 100644
--- a/utils.cpp
+++ b/utils.cpp
@@ -6,7 +6,7 @@
6*/ 6*/
7 7
8#include <sys/stat.h> 8#include <sys/stat.h>
9#include "../../Open Steamworks/Steamworks.h" 9#include "Open Steamworks/Steamworks.h"
10 10
11extern IClientApps* g_pClientApps; 11extern IClientApps* g_pClientApps;
12 12