Browse Source

Update dlls/Makefile

hlzbot-dirty
THE-Swank 8 years ago
parent
commit
3ee205d150
  1. 20
      dlls/Makefile

20
dlls/Makefile

@ -9,14 +9,14 @@ LIBNAME := hl
CFLAGS := -pipe CFLAGS := -pipe
CFLAGS += \ CFLAGS += \
-D_LINUX -DCLIENT_WEAPONS -DNO_VOICEGAMEMGR \ -D_LINUX -DCLIENT_WEAPONS -DNO_VOICEGAMEMGR \
-Dstricmp=strcasecmp -D_strnicmp=strncasecmp -Dstrnicmp=strncasecmp -D_snprintf=snprintf -Dstricmp=strcasecmp -D_strnicmp=strncasecmp -Dstrnicmp=strncasecmp -D_snprintf=snprintf
CFLAGS_RELEASE := -Ofast -w CFLAGS_RELEASE := -Ofast -w
CFLAGS_DEBUG := -Wall -Wno-invalid-offsetof CFLAGS_DEBUG := -Wall -Wno-invalid-offsetof
CXX_ONLY_FLAGS := -std=c++11 CXX_ONLY_FLAGS :=
C_ONLY_FLAGS := -std=c99 C_ONLY_FLAGS :=
CFLAGS_OPT_X86 := -march=native -mtune=native CFLAGS_OPT_X86 := -march=native -mtune=native
CFLAGS_OPT_ARM := -mthumb -mfloat-abi=hard -mfpu=neon -mvectorize-with-neon-quad -mcpu=cortex-a9 CFLAGS_OPT_ARM := -mthumb -mfloat-abi=hard -mfpu=neon -mvectorize-with-neon-quad -mcpu=cortex-a9
@ -157,23 +157,23 @@ COMPILE_ARCH := $(COMPILE_ARCH:i%86=x86)
COMPILE_ARCH := $(COMPILE_ARCH:arm%=arm) COMPILE_ARCH := $(COMPILE_ARCH:arm%=arm)
ifeq ($(ARCH), i86pc) ifeq ($(ARCH), i86pc)
COMPILE_ARCH := x86 COMPILE_ARCH := x86
endif endif
ifeq ($(ARCH), x64) ifeq ($(ARCH), x64)
COMPILE_ARCH := x86_64 COMPILE_ARCH := x86_64
endif endif
ifeq ($(ARCH), amd64) ifeq ($(ARCH), amd64)
COMPILE_ARCH := x86_64 COMPILE_ARCH := x86_64
endif endif
ifeq ($(COMPILE_ARCH), x86) ifeq ($(COMPILE_ARCH), x86)
CFLAGS += $(CFLAGS_OPT_X86) CFLAGS += $(CFLAGS_OPT_X86)
endif endif
ifeq ($(COMPILE_ARCH), x86_64) ifeq ($(COMPILE_ARCH), x86_64)
CFLAGS += $(CFLAGS_OPT_X86) CFLAGS += $(CFLAGS_OPT_X86)
endif endif
ifeq ($(COMPILE_ARCH), arm) ifeq ($(COMPILE_ARCH), arm)
CFLAGS += $(CFLAGS_OPT_ARM) CFLAGS += $(CFLAGS_OPT_ARM)
endif endif
release: CFLAGS += $(CFLAGS_RELEASE) release: CFLAGS += $(CFLAGS_RELEASE)

Loading…
Cancel
Save