mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-01-22 09:31:11 +00:00
Makefile updates and adding Makefile.local
This commit is contained in:
parent
1260f28be1
commit
707db125e7
2 changed files with 15 additions and 7 deletions
|
@ -24,25 +24,25 @@ ifeq ($(COMPILE_PLATFORM),mingw32)
|
|||
endif
|
||||
|
||||
ifndef BUILD_STANDALONE
|
||||
BUILD_STANDALONE = 1
|
||||
BUILD_STANDALONE =
|
||||
endif
|
||||
ifndef BUILD_CLIENT
|
||||
BUILD_CLIENT = 1
|
||||
BUILD_CLIENT =
|
||||
endif
|
||||
ifndef BUILD_CLIENT_SMP
|
||||
BUILD_CLIENT_SMP = 1
|
||||
BUILD_CLIENT_SMP =
|
||||
endif
|
||||
ifndef BUILD_SERVER
|
||||
BUILD_SERVER = 1
|
||||
BUILD_SERVER =
|
||||
endif
|
||||
ifndef BUILD_GAME_SO
|
||||
BUILD_GAME_SO = 1
|
||||
BUILD_GAME_SO =
|
||||
endif
|
||||
ifndef BUILD_GAME_QVM
|
||||
BUILD_GAME_QVM = 1
|
||||
BUILD_GAME_QVM =
|
||||
endif
|
||||
ifndef BUILD_MISSIONPACK
|
||||
BUILD_MISSIONPACK= 0
|
||||
BUILD_MISSIONPACK=
|
||||
endif
|
||||
|
||||
ifneq ($(PLATFORM),darwin)
|
||||
|
|
8
reaction/Makefile.local
Normal file
8
reaction/Makefile.local
Normal file
|
@ -0,0 +1,8 @@
|
|||
|
||||
BUILD_STANDALONE = 1
|
||||
BUILD_CLIENT = 1
|
||||
BUILD_CLIENT_SMP = 1
|
||||
BUILD_SERVER = 1
|
||||
BUILD_GAME_SO = 1
|
||||
BUILD_GAME_QVM = 1
|
||||
BUILD_MISSIONPACK = 0
|
Loading…
Reference in a new issue