From 2c94d84018284f182480ac35020f2bd63a653bd3 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Wed, 18 Jul 2012 12:32:45 +0000 Subject: [PATCH] Makefile fix for the newly added squirrel, MCServer compilable on *nix again git-svn-id: http://mc-server.googlecode.com/svn/trunk@682 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index a597e74ec..a7176c65e 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -63,7 +63,7 @@ INCLUDE = -I.\ # Build MCServer # -SOURCES := $(shell find lua-5.1.4 jsoncpp-src-0.5.0 zlib-1.2.7 source tolua++-1.0.93 iniFile WebServer '(' -name '*.cpp' -o -name '*.c' ')') +SOURCES := $(shell find lua-5.1.4 jsoncpp-src-0.5.0 zlib-1.2.7 source squirrel_3_0_1_stable tolua++-1.0.93 iniFile WebServer '(' -name '*.cpp' -o -name '*.c' ')') SOURCES := $(filter-out %minigzip.c %lua.c %tolua.c %toluabind.c %LeakFinder.cpp %StackWalker.cpp %example.c,$(SOURCES)) OBJECTS := $(patsubst %.c,$(BUILDDIR)%.o,$(SOURCES)) OBJECTS := $(patsubst %.cpp,$(BUILDDIR)%.o,$(OBJECTS))