summaryrefslogtreecommitdiff
path: root/apps/Gateway
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-06-26 20:23:33 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-06-26 20:23:33 +0000
commite7149fedca3454c09a4720fc23811e4d5f0e452f (patch)
treed269170a79ef00965dd19605afe35939a2d8a730 /apps/Gateway
parent1b4fd30d6aa717eecf6604c2d6b3a29e625e89d0 (diff)
downloadATCD-e7149fedca3454c09a4720fc23811e4d5f0e452f.tar.gz
.
Diffstat (limited to 'apps/Gateway')
-rw-r--r--apps/Gateway/Gateway/Makefile.bor15
-rw-r--r--apps/Gateway/Makefile.bor21
-rw-r--r--apps/Gateway/Peer/Makefile.bor9
3 files changed, 45 insertions, 0 deletions
diff --git a/apps/Gateway/Gateway/Makefile.bor b/apps/Gateway/Gateway/Makefile.bor
new file mode 100644
index 00000000000..1fc1899b603
--- /dev/null
+++ b/apps/Gateway/Gateway/Makefile.bor
@@ -0,0 +1,15 @@
+NAME = gatewayd
+OBJFILES = \
+ $(OBJDIR)\Concrete_Connection_Handlers.obj \
+ $(OBJDIR)\Config_Files.obj \
+ $(OBJDIR)\File_Parser.obj \
+ $(OBJDIR)\Gateway.obj \
+ $(OBJDIR)\Event_Channel.obj \
+ $(OBJDIR)\Event_Forwarding_Discriminator.obj \
+ $(OBJDIR)\Options.obj \
+ $(OBJDIR)\Connection_Handler.obj \
+ $(OBJDIR)\Connection_Handler_Acceptor.obj \
+ $(OBJDIR)\Connection_Handler_Connector.obj \
+ $(OBJDIR)\gatewayd.obj
+!include <$(ACE_ROOT)\apps\build.bor>
+
diff --git a/apps/Gateway/Makefile.bor b/apps/Gateway/Makefile.bor
new file mode 100644
index 00000000000..fcce9a54f49
--- /dev/null
+++ b/apps/Gateway/Makefile.bor
@@ -0,0 +1,21 @@
+
+!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:
+ cd $(ACE_ROOT)\apps\Gateway\Gateway
+ $(MAKE) -f Makefile.bor $(FLAGS)
+ cd $(ACE_ROOT)\apps\Gateway\Peer
+ $(MAKE) -f Makefile.bor $(FLAGS)
+
diff --git a/apps/Gateway/Peer/Makefile.bor b/apps/Gateway/Peer/Makefile.bor
new file mode 100644
index 00000000000..8aa8af754a7
--- /dev/null
+++ b/apps/Gateway/Peer/Makefile.bor
@@ -0,0 +1,9 @@
+
+NAME = peerd
+OBJFILES = \
+ $(OBJDIR)\Options.obj \
+ $(OBJDIR)\Peer.obj \
+ $(OBJDIR)\peerd.obj
+!include <$(ACE_ROOT)\apps\build.bor>
+LIBFILES= $(ACE_ROOT)\bin\ace$(LIB_DECORATOR).lib
+