From 0d9cef6d518a17772396d7e7ba211cd50f5bc53b Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 22 Apr 2005 14:28:52 +0000 Subject: [PATCH] Added Makefile Cleaned up files for linux --HG-- extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%4034 --- sourcemm/CPlugin.h | 1 + sourcemm/Makefile | 58 ++++++++++++++++++++++++++++++++++++++++++++++ sourcemm/util.cpp | 3 ++- sourcemm/util.h | 4 ++-- 4 files changed, 63 insertions(+), 3 deletions(-) create mode 100644 sourcemm/Makefile diff --git a/sourcemm/CPlugin.h b/sourcemm/CPlugin.h index 811d882..ff2cd4e 100644 --- a/sourcemm/CPlugin.h +++ b/sourcemm/CPlugin.h @@ -17,6 +17,7 @@ */ #include +#include #include "IPluginManager.h" #include "oslink.h" diff --git a/sourcemm/Makefile b/sourcemm/Makefile new file mode 100644 index 0000000..c57ebad --- /dev/null +++ b/sourcemm/Makefile @@ -0,0 +1,58 @@ +#(C)2004-2005 SourceMM Development Team +# Makefile written by David "BAILOPAN" Anderson + +OPT_FLAGS = -O3 -fno-rtti -funroll-loops -s -pipe +DEBUG_FLAGS = -g -ggdb3 +HL2SDK = ../../hl2sdk +CPP = g++ +SMM_ROOT = .. +SRCDS = ~/srcds + +### NOTHING TO EDIT BELOW ### + +OBJECTS = oslink.cpp sourcehook.cpp util.cpp convar.cpp concommands.cpp \ + CSmmAPI.cpp sourcemm.cpp CPlugin.cpp + +LINK = vstdlib_i486.so tier0_i486.so + +HL2PUB = $(HL2SDK)/public + +INCLUDE = -I. -I$(HL2PUB) -I$(HL2PUB)/dlls -I$(HL2PUB)/engine -I$(HL2PUB)tier0 -I$(HL2PUB)/tier1 \ + -I$(HL2PUB)/vstdlib -I$(HL2SDK)/tier1 -I$(SMM_ROOT) -I$(SMM_ROOT)/sourcehook + +BINARY = sourcemm_i486.so + +ifeq "$(DEBUG)" "true" + BIN_DIR = Debug + CFLAGS = $(DEBUG_FLAGS) +else + BIN_DIR = Release + CFLAGS = $(OPT_FLAGS) +endif + +CFLAGS += -fpermissive -D_LINUX -DNDEBUG -Dstricmp=strcasecmp -D_stricmp=strcasecmp -D_strnicmp=strncasecmp -Dstrnicmp=strncasecmp -D_snprintf=snprintf -D_vsnprintf=vsnprintf -D_alloca=alloca -Dstrcmpi=strcasecmp -fPIC + +OBJ_LINUX := $(OBJECTS:%.cpp=$(BIN_DIR)/%.o) + +$(BIN_DIR)/%.o: %.cpp + $(CPP) $(INCLUDE) $(CFLAGS) -o $@ -c $< + +all: + mkdir -p $(BIN_DIR) + ln -sf $(SRCDS)/bin/vstdlib_i486.so vstdlib_i486.so + ln -sf $(SRCDS)/bin/tier0_i486.so tier0_i486.so + $(MAKE) sourcemm + +sourcemm: $(OBJ_LINUX) + $(CPP) $(INCLUDE) $(CFLAGS) $(OBJ_LINUX) $(LINK) -shared -ldl -lm -o$(BIN_DIR)/$(BINARY) + +debug: + $(MAKE) all DEBUG=true + +default: all + +clean: + rm -rf Release/*.o + rm -rf Release/$(BINARY) + rm -rf Debug/*.o + rm -rf Debug/$(BINARY) diff --git a/sourcemm/util.cpp b/sourcemm/util.cpp index a4e92ee..83ac14f 100644 --- a/sourcemm/util.cpp +++ b/sourcemm/util.cpp @@ -36,4 +36,5 @@ const char *UTIL_GetExtension(const char *file) } return NULL; -} \ No newline at end of file +} + diff --git a/sourcemm/util.h b/sourcemm/util.h index 6c95a2a..766ff52 100644 --- a/sourcemm/util.h +++ b/sourcemm/util.h @@ -25,9 +25,9 @@ const char *UTIL_GetExtension(const char *file); g_SmmAPI.SetLastMetaReturn(MRES_IGNORED); \ for (i=g_PluginMngr._begin(); i!=g_PluginMngr._end(); i++) \ { \ - if ( (*i) && (*i)->fac_list.##type ) \ + if ( (*i) && (*i)->fac_list. type ) \ { \ - d = ((*i)->fac_list.##type)(name, ret); \ + d = ((*i)->fac_list. type)(name, ret); \ mres = g_SmmAPI.GetLastMetaReturn(); \ if (mres > high) \ high = mres; \