From a1a020bb77420bc17c81841f16b700aca1fc8296 Mon Sep 17 00:00:00 2001
From: /dev/humancontroller <devhc@example.com>
Date: Mon, 6 Feb 2017 17:46:58 +0100
Subject: stop using profile/platform/architecture-specific build directories,
 just use "bld" (by default)

also update the .gitignore appropriately
---
 GNUmakefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'GNUmakefile')

diff --git a/GNUmakefile b/GNUmakefile
index 2ae8a3c9..9bd8a79a 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -135,7 +135,7 @@ MOUNT_DIR=src
 endif
 
 ifndef BUILD_DIR
-BUILD_DIR=build
+BUILD_DIR=bld
 endif
 
 ifndef TEMPDIR
@@ -228,8 +228,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
-- 
cgit