diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | GNUmakefile | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -1,2 +1,2 @@ -/build +/bld /GNUmakefile.local 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 |