mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-08-26 13:51:49 +00:00
Use ?= on compilers. Remove D_LINUX from client Makefile
This commit is contained in:
parent
d4d78f7691
commit
5d0b6f267e
@ -1,5 +1,5 @@
|
|||||||
CC=gcc
|
CC?=gcc
|
||||||
CXX=g++
|
CXX?=g++
|
||||||
SRCS+=../dlls/crossbow.cpp
|
SRCS+=../dlls/crossbow.cpp
|
||||||
SRCS+=../dlls/crowbar.cpp
|
SRCS+=../dlls/crowbar.cpp
|
||||||
SRCS+=../dlls/egon.cpp
|
SRCS+=../dlls/egon.cpp
|
||||||
@ -67,7 +67,7 @@ SRCS+=./input_xash3d.cpp
|
|||||||
SRCS+=./scoreboard.cpp
|
SRCS+=./scoreboard.cpp
|
||||||
SRCS+=./MOTD.cpp
|
SRCS+=./MOTD.cpp
|
||||||
INCLUDES = -I../common -I. -I../game_shared -I../pm_shared -I../engine -I../dlls
|
INCLUDES = -I../common -I. -I../game_shared -I../pm_shared -I../engine -I../dlls
|
||||||
DEFINES = -Wno-write-strings -DLINUX -D_LINUX -Dstricmp=strcasecmp -D_strnicmp=strncasecmp -Dstrnicmp=strncasecmp -DCLIENT_WEAPONS -DCLIENT_DLL
|
DEFINES = -Wno-write-strings -Dstricmp=strcasecmp -D_strnicmp=strncasecmp -Dstrnicmp=strncasecmp -DCLIENT_WEAPONS -DCLIENT_DLL
|
||||||
CFLAGS = -m32
|
CFLAGS = -m32
|
||||||
OBJS = $(SRCS:.cpp=.o) $(SRCS_C:.c=.o)
|
OBJS = $(SRCS:.cpp=.o) $(SRCS_C:.c=.o)
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@ DLLNAME=hl
|
|||||||
ARCH=i386
|
ARCH=i386
|
||||||
|
|
||||||
#make sure this is the correct compiler for your system
|
#make sure this is the correct compiler for your system
|
||||||
CC=gcc
|
CC?=gcc
|
||||||
CXX=g++
|
CXX?=g++
|
||||||
|
|
||||||
DLL_SRCDIR=.
|
DLL_SRCDIR=.
|
||||||
ENGINE_SRCDIR=../engine
|
ENGINE_SRCDIR=../engine
|
||||||
|
Loading…
x
Reference in New Issue
Block a user