summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/bank/Makefile.bor
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/bank/Makefile.bor')
-rw-r--r--TAO/examples/Simple/bank/Makefile.bor23
1 files changed, 0 insertions, 23 deletions
diff --git a/TAO/examples/Simple/bank/Makefile.bor b/TAO/examples/Simple/bank/Makefile.bor
deleted file mode 100644
index 13de82d2408..00000000000
--- a/TAO/examples/Simple/bank/Makefile.bor
+++ /dev/null
@@ -1,23 +0,0 @@
-
-#
-# Makefile for building the Bank example
-#
-
-!ifdef DEBUG
-DEBUG_FLAG = -DDEBUG
-!endif
-
-!ifdef STATIC
-STATIC_FLAG = -DSTATIC
-!endif
-
-!ifdef PASCAL
-PASCAL_FLAG = -DPASCAL
-!endif
-
-FLAGS = $(DEBUG_FLAG) $(STATIC_FLAG) $(PASCAL_FLAG)
-
-all:
- $(MAKE) -f Bank_Client.bor $(FLAGS)
- $(MAKE) -f Bank_Server.bor $(FLAGS)
-