mirror of
https://github.com/UberGames/ioef.git
synced 2025-05-30 00:41:17 +00:00
* Updated AL headers
* Added a Makefile option USE_LOCAL_HEADERS which can be disabled to use system headers if desired
This commit is contained in:
parent
acb810b972
commit
1b314e8934
12 changed files with 690 additions and 793 deletions
|
@ -70,6 +70,10 @@ ifndef USE_OPENAL_DLOPEN
|
|||
USE_OPENAL_DLOPEN=0
|
||||
endif
|
||||
|
||||
ifndef USE_LOCAL_HEADERS
|
||||
USE_LOCAL_HEADERS=1
|
||||
endif
|
||||
|
||||
ifndef BUILD_CLIENT
|
||||
BUILD_CLIENT=1
|
||||
endif
|
||||
|
@ -653,6 +657,10 @@ ifdef DEFAULT_BASEDIR
|
|||
BASE_CFLAGS += -DDEFAULT_BASEDIR=\\\"$(DEFAULT_BASEDIR)\\\"
|
||||
endif
|
||||
|
||||
ifeq ($(USE_LOCAL_HEADERS),1)
|
||||
BASE_CFLAGS += -DUSE_LOCAL_HEADERS=1
|
||||
endif
|
||||
|
||||
ifeq ($(GENERATE_DEPENDENCIES),1)
|
||||
ifeq ($(CC),gcc)
|
||||
DEPEND_CFLAGS=-MMD
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue