summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2017-06-25 19:44:04 +0200
committerPaweł Redman <pawel.redman@gmail.com>2017-06-25 19:44:04 +0200
commit357ec9764e523ddf2084a9f014922a3d10e22a25 (patch)
treec7785be264afc4812a8d9e556b12990897587859
parent44a305ba686bda6319d54cccf7069bfd5bb04f8d (diff)
Don't build anything but game libs by default.
-rw-r--r--GNUmakefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/GNUmakefile b/GNUmakefile
index ce777ba..e587ebd 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -18,28 +18,28 @@ ifeq ($(COMPILE_PLATFORM),darwin)
endif
ifndef BUILD_STANDALONE
- BUILD_STANDALONE =
+ BUILD_STANDALONE = 0
endif
ifndef BUILD_CLIENT
- BUILD_CLIENT =
+ BUILD_CLIENT = 0
endif
ifndef BUILD_SERVER
- BUILD_SERVER =
+ BUILD_SERVER = 0
endif
ifndef BUILD_GAME_SO
- BUILD_GAME_SO =
+ BUILD_GAME_SO = 1
endif
ifndef BUILD_GAME_QVM
- BUILD_GAME_QVM =
+ BUILD_GAME_QVM = 0
endif
ifndef BUILD_GAME_QVM_11
- BUILD_GAME_QVM_11=
+ BUILD_GAME_QVM_11= 0
endif
ifndef BUILD_ONLY_GAME
- BUILD_ONLY_GAME =
+ BUILD_ONLY_GAME = 0
endif
ifndef BUILD_ONLY_CGUI
- BUILD_ONLY_CGUI =
+ BUILD_ONLY_CGUI = 0
endif
#############################################################################