From d1c1cb5f7ca8480117fdc735b92ac4b88dbc4c30 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Sat, 27 Oct 2012 11:59:27 -0400 Subject: [PATCH] Makefile updates. --- core/Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/core/Makefile b/core/Makefile index 9538970d..a7a8064b 100644 --- a/core/Makefile +++ b/core/Makefile @@ -131,7 +131,15 @@ ifneq (,$(filter original orangebox left4dead,$(ENGINE))) LIB_SUFFIX = _i486.$(LIB_EXT) else LIB_PREFIX = lib - LIB_SUFFIX = .$(LIB_EXT) + ifeq "$(ENGINE)" "orangeboxvalve" + ifneq "$(OS)" "Darwin" + LIB_SUFFIX = _srv.$(LIB_EXT) + else + LIB_SUFFIX = .$(LIB_EXT) + endif + else + LIB_SUFFIX = .$(LIB_EXT) + endif endif CFLAGS += -DSE_EPISODEONE=1 -DSE_DARKMESSIAH=2 -DSE_ORANGEBOX=3 -DSE_BLOODYGOODTIME=4 -DSE_EYE=5 \