summaryrefslogtreecommitdiff
path: root/include/makeinclude/decorator.bor
diff options
context:
space:
mode:
Diffstat (limited to 'include/makeinclude/decorator.bor')
-rw-r--r--include/makeinclude/decorator.bor48
1 files changed, 0 insertions, 48 deletions
diff --git a/include/makeinclude/decorator.bor b/include/makeinclude/decorator.bor
deleted file mode 100644
index 0b20bcbdeb5..00000000000
--- a/include/makeinclude/decorator.bor
+++ /dev/null
@@ -1,48 +0,0 @@
-#
-# Creates a suffix for decorating output file names
-#
-# Inputs:
-# ~~~~~~~
-# DEBUG - defined if building a debug library/executable
-# STATIC - defined if building a static library
-# PASCAL - defined if linking against cp32*
-#
-# Outputs:
-# ~~~~~~~~
-# LIB_DECORATOR - suffix to be added to library output file name
-# EXE_DECORATOR - suffix to be added to executable output file name
-#
-
-DECO_PREFIX=
-
-# If you want decoration for Borland, set this to something like "B"
-# otherwise, make it blank
-BORLAND_DECO=b
-
-!ifdef BORLAND_DECO
-DECO_PREFIX=_
-!endif
-
-!ifdef PASCAL
-DECO_PREFIX=_
-PASCAL_DECO=p
-!endif
-
-!ifdef STATIC
-DECO_PREFIX=_
-STATIC_DECO=s
-!endif
-
-!ifdef DEBUG
-DECO_PREFIX=_
-DEBUG_DECO=d
-!endif
-
-LIB_DECORATOR=$(DECO_PREFIX)$(BORLAND_DECO)$(PASCAL_DECO)$(STATIC_DECO)$(DEBUG_DECO)
-
-!ifdef NO_EXE_DECORATION
-EXE_DECORATOR=
-!else
-EXE_DECORATOR=$(DECO_PREFIX)$(BORLAND_DECO)$(PASCAL_DECO)$(STATIC_DECO)$(DEBUG_DECO)
-!endif
-