Merge branch 'master' into sdl2
This commit is contained in:
commit
ed087bb89e
320 changed files with 18335 additions and 9574 deletions
24
Makefile
24
Makefile
|
@ -240,9 +240,9 @@ UIDIR=$(MOUNT_DIR)/ui
|
|||
Q3UIDIR=$(MOUNT_DIR)/q3_ui
|
||||
JPDIR=$(MOUNT_DIR)/jpeg-8c
|
||||
SPEEXDIR=$(MOUNT_DIR)/libspeex
|
||||
OGGDIR=$(MOUNT_DIR)/libogg-1.3.0
|
||||
OPUSDIR=$(MOUNT_DIR)/opus-1.0.2
|
||||
OPUSFILEDIR=$(MOUNT_DIR)/opusfile-0.2
|
||||
OGGDIR=$(MOUNT_DIR)/libogg-1.3.1
|
||||
OPUSDIR=$(MOUNT_DIR)/opus-1.1
|
||||
OPUSFILEDIR=$(MOUNT_DIR)/opusfile-0.5
|
||||
ZDIR=$(MOUNT_DIR)/zlib
|
||||
Q3ASMDIR=$(MOUNT_DIR)/tools/asm
|
||||
LBURGDIR=$(MOUNT_DIR)/tools/lcc/lburg
|
||||
|
@ -534,6 +534,10 @@ ifeq ($(PLATFORM),mingw32)
|
|||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(CC),)
|
||||
$(error Cannot find a suitable cross compiler for $(PLATFORM))
|
||||
endif
|
||||
|
||||
BASE_CFLAGS = -Wall -fno-strict-aliasing -Wimplicit -Wstrict-prototypes \
|
||||
-DUSE_ICON
|
||||
|
||||
|
@ -1819,10 +1823,15 @@ endif
|
|||
ifeq ($(USE_CODEC_OPUS),1)
|
||||
ifeq ($(USE_INTERNAL_OPUS),1)
|
||||
Q3OBJ += \
|
||||
$(B)/client/opus/analysis.o \
|
||||
$(B)/client/opus/mlp.o \
|
||||
$(B)/client/opus/mlp_data.o \
|
||||
$(B)/client/opus/opus.o \
|
||||
$(B)/client/opus/opus_decoder.o \
|
||||
$(B)/client/opus/opus_encoder.o \
|
||||
$(B)/client/opus/opus_multistream.o \
|
||||
$(B)/client/opus/opus_multistream_encoder.o \
|
||||
$(B)/client/opus/opus_multistream_decoder.o \
|
||||
$(B)/client/opus/repacketizer.o \
|
||||
\
|
||||
$(B)/client/opus/bands.o \
|
||||
|
@ -1837,6 +1846,8 @@ Q3OBJ += \
|
|||
$(B)/client/opus/mdct.o \
|
||||
$(B)/client/opus/modes.o \
|
||||
$(B)/client/opus/pitch.o \
|
||||
$(B)/client/opus/celt_encoder.o \
|
||||
$(B)/client/opus/celt_decoder.o \
|
||||
$(B)/client/opus/celt_lpc.o \
|
||||
$(B)/client/opus/quant_bands.o \
|
||||
$(B)/client/opus/rate.o \
|
||||
|
@ -1955,7 +1966,8 @@ Q3OBJ += \
|
|||
$(B)/client/info.o \
|
||||
$(B)/client/internal.o \
|
||||
$(B)/client/opusfile.o \
|
||||
$(B)/client/stream.o
|
||||
$(B)/client/stream.o \
|
||||
$(B)/client/wincerts.o
|
||||
endif
|
||||
endif
|
||||
|
||||
|
@ -2701,6 +2713,10 @@ ifneq ($(BUILD_CLIENT),0)
|
|||
ifneq ($(BUILD_RENDERER_OPENGL2),0)
|
||||
$(INSTALL) $(STRIP_FLAG) -m 0755 $(BR)/renderer_opengl2_$(SHLIBNAME) $(COPYBINDIR)/renderer_opengl2_$(SHLIBNAME)
|
||||
endif
|
||||
else
|
||||
ifneq ($(BUILD_RENDERER_OPENGL2),0)
|
||||
$(INSTALL) $(STRIP_FLAG) -m 0755 $(BR)/$(CLIENTBIN)_opengl2$(FULLBINEXT) $(COPYBINDIR)/$(CLIENTBIN)_opengl2$(FULLBINEXT)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue