Makefile updates and adding Makefile.local

This commit is contained in:
Richard Allen 2011-06-30 20:43:07 +00:00
parent 1260f28be1
commit 707db125e7
2 changed files with 15 additions and 7 deletions

View file

@ -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
View 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