summaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
author/dev/humancontroller <devhc@example.com>2017-04-15 10:29:59 +0200
committer/dev/humancontroller <devhc@example.com>2017-04-15 12:13:44 +0200
commit64c2113c4ed83fb40d20e75cd85d997b6b2e38a3 (patch)
tree4ce9a41a5c14322d8d584d01830fc5f846827c4a /GNUmakefile
parentbbe420c567c1f44e51f2367e54ffad330fb9e099 (diff)
stop using profile/platform/architecture-specific build directories, just use "bld" (by default)
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 54385e6..6f008a7 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -133,7 +133,7 @@ MOUNT_DIR=src
endif
ifndef BUILD_DIR
-BUILD_DIR=build
+BUILD_DIR=bld
endif
ifndef TEMPDIR
@@ -226,8 +226,8 @@ endif
#############################################################################
-BD=$(BUILD_DIR)/debug-$(PLATFORM)-$(ARCH)
-BR=$(BUILD_DIR)/release-$(PLATFORM)-$(ARCH)
+BD=$(BUILD_DIR) # /debug-$(PLATFORM)-$(ARCH)
+BR=$(BUILD_DIR) # /release-$(PLATFORM)-$(ARCH)
CDIR=$(MOUNT_DIR)/client
SDIR=$(MOUNT_DIR)/server
RCOMMONDIR=$(MOUNT_DIR)/renderercommon