summaryrefslogtreecommitdiff
path: root/include/makeinclude/outputdir.bor
diff options
context:
space:
mode:
Diffstat (limited to 'include/makeinclude/outputdir.bor')
-rw-r--r--include/makeinclude/outputdir.bor60
1 files changed, 0 insertions, 60 deletions
diff --git a/include/makeinclude/outputdir.bor b/include/makeinclude/outputdir.bor
deleted file mode 100644
index 719e2721a1b..00000000000
--- a/include/makeinclude/outputdir.bor
+++ /dev/null
@@ -1,60 +0,0 @@
-#
-# Creates output object and binary file directories
-#
-# Inputs:
-# ~~~~~~~
-# NAME - undecorated name of target
-# DEBUG - defined if building a debug library/executable
-# STATIC - defined if building a static library
-#
-# Outputs:
-# ~~~~~~~~
-# BINDIR - name of directory where binaries are placed
-# MAKE_BINDIR - command to be used for creating BINDIR
-# OBJDIR - name of directory where object fils are placed
-# MAKE_OBJDIR - command to be used for creating OBJDIR
-#
-
-!ifdef STATIC
-STATIC_DIR=Static
-!else
-STATIC_DIR=Dynamic
-!endif
-
-!ifdef DEBUG
-DEBUG_DIR=Debug
-!else
-DEBUG_DIR=Release
-!endif
-
-!ifdef PASCAL
-PASCAL_DIR=Pascal
-!else
-PASCAL_DIR=.
-!endif
-
-# By default binaries are built underneath the current build directory
-!ifndef BASE_BINDIR
-BASE_BINDIR=.
-!endif
-
-# By default object files are built underneath the current build directory
-!ifndef BASE_OBJDIR
-BASE_OBJDIR=.\obj
-!endif
-
-!ifndef BINDIR
-BINDIR=$(BASE_BINDIR)\$(STATIC_DIR)\$(DEBUG_DIR)\$(PASCAL_DIR)
-!endif
-
-!ifndef CORE_BINDIR
-CORE_BINDIR=$(ACE_ROOT)\bin\$(STATIC_DIR)\$(DEBUG_DIR)\$(PASCAL_DIR)
-!endif
-
-MAKE_BINDIR=if not exist "$(BINDIR)" mkdir "$(BINDIR)"
-
-!ifndef OBJDIR
-OBJDIR=$(BASE_OBJDIR)\$(NAME)\$(STATIC_DIR)\$(DEBUG_DIR)
-!endif
-
-MAKE_OBJDIR=if not exist "$(OBJDIR)" mkdir "$(OBJDIR)"