diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-06-26 20:30:13 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-06-26 20:30:13 +0000 |
commit | 6c3c0947a8602e07a953c7861a6e6c15dfaf3273 (patch) | |
tree | 72e29364ff87f858a91992922140281c2539f218 /netsvcs/clients | |
parent | 94e0c9047e610d09e353aa1664108bd5ca87687b (diff) | |
download | ATCD-6c3c0947a8602e07a953c7861a6e6c15dfaf3273.tar.gz |
.
Diffstat (limited to 'netsvcs/clients')
-rw-r--r-- | netsvcs/clients/Logger/Makefile.bor | 14 | ||||
-rw-r--r-- | netsvcs/clients/Makefile.bor | 23 | ||||
-rw-r--r-- | netsvcs/clients/Naming/Client/Makefile.bor | 8 | ||||
-rw-r--r-- | netsvcs/clients/Naming/Dump_Restore/Makefile.bor | 8 | ||||
-rw-r--r-- | netsvcs/clients/Naming/Makefile.bor | 21 | ||||
-rw-r--r-- | netsvcs/clients/Tokens/Makefile.bor | 29 | ||||
-rw-r--r-- | netsvcs/clients/Tokens/collection/Makefile.bor | 5 | ||||
-rw-r--r-- | netsvcs/clients/Tokens/deadlock/Makefile.bor | 5 | ||||
-rw-r--r-- | netsvcs/clients/Tokens/invariant/Makefile.bor | 5 | ||||
-rw-r--r-- | netsvcs/clients/Tokens/manual/Makefile.bor | 5 | ||||
-rw-r--r-- | netsvcs/clients/Tokens/mutex/Makefile.bor | 5 | ||||
-rw-r--r-- | netsvcs/clients/Tokens/rw_lock/Makefile.bor | 5 |
12 files changed, 133 insertions, 0 deletions
diff --git a/netsvcs/clients/Logger/Makefile.bor b/netsvcs/clients/Logger/Makefile.bor new file mode 100644 index 00000000000..58f395a5496 --- /dev/null +++ b/netsvcs/clients/Logger/Makefile.bor @@ -0,0 +1,14 @@ + +APPS = \ + direct_logging \ + indirect_logging + +all: $(APPS) + +$(APPS): + $(MAKE) -f Makefile.bor -DNAME=$@ $(DEBUGFLAG) $(STATICFLAG) \ + $(PASCALFLAG) $(BINDIR)\$@.exe +OBJFILES=$(OBJDIR)\$(NAME).obj + +!include <$(ACE_ROOT)\netsvcs\build.bor> + diff --git a/netsvcs/clients/Makefile.bor b/netsvcs/clients/Makefile.bor new file mode 100644 index 00000000000..464745373f4 --- /dev/null +++ b/netsvcs/clients/Makefile.bor @@ -0,0 +1,23 @@ + +!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)\netsvcs\clients\Logger + $(MAKE) -f Makefile.bor $(FLAGS) + cd $(ACE_ROOT)\netsvcs\clients\Naming + $(MAKE) -f Makefile.bor $(FLAGS) + cd $(ACE_ROOT)\netsvcs\clients\Tokens + $(MAKE) -f Makefile.bor $(FLAGS) + diff --git a/netsvcs/clients/Naming/Client/Makefile.bor b/netsvcs/clients/Naming/Client/Makefile.bor new file mode 100644 index 00000000000..9f7daeada25 --- /dev/null +++ b/netsvcs/clients/Naming/Client/Makefile.bor @@ -0,0 +1,8 @@ + +NAME = main +OBJFILES = \ + $(OBJDIR)\main.obj \ + $(OBJDIR)\Client_Test.obj + +!include <$(ACE_ROOT)\netsvcs\build.bor> + diff --git a/netsvcs/clients/Naming/Dump_Restore/Makefile.bor b/netsvcs/clients/Naming/Dump_Restore/Makefile.bor new file mode 100644 index 00000000000..8bb56bf5f62 --- /dev/null +++ b/netsvcs/clients/Naming/Dump_Restore/Makefile.bor @@ -0,0 +1,8 @@ + +NAME = main +OBJFILES = \ + $(OBJDIR)\main.obj \ + $(OBJDIR)\Dump_Restore.obj + +!include <$(ACE_ROOT)\netsvcs\build.bor> + diff --git a/netsvcs/clients/Naming/Makefile.bor b/netsvcs/clients/Naming/Makefile.bor new file mode 100644 index 00000000000..c793a30e471 --- /dev/null +++ b/netsvcs/clients/Naming/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)\netsvcs\clients\Naming\Client + $(MAKE) -f Makefile.bor $(FLAGS) + cd $(ACE_ROOT)\netsvcs\clients\Naming\Dump_Restore + $(MAKE) -f Makefile.bor $(FLAGS) + diff --git a/netsvcs/clients/Tokens/Makefile.bor b/netsvcs/clients/Tokens/Makefile.bor new file mode 100644 index 00000000000..eb684a845f9 --- /dev/null +++ b/netsvcs/clients/Tokens/Makefile.bor @@ -0,0 +1,29 @@ + +!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)\netsvcs\clients\Tokens\collection + $(MAKE) -f Makefile.bor $(FLAGS) + cd $(ACE_ROOT)\netsvcs\clients\Tokens\deadlock + $(MAKE) -f Makefile.bor $(FLAGS) + cd $(ACE_ROOT)\netsvcs\clients\Tokens\invariant + $(MAKE) -f Makefile.bor $(FLAGS) + cd $(ACE_ROOT)\netsvcs\clients\Tokens\manual + $(MAKE) -f Makefile.bor $(FLAGS) + cd $(ACE_ROOT)\netsvcs\clients\Tokens\mutex + $(MAKE) -f Makefile.bor $(FLAGS) + cd $(ACE_ROOT)\netsvcs\clients\Tokens\rw_lock + $(MAKE) -f Makefile.bor $(FLAGS) + diff --git a/netsvcs/clients/Tokens/collection/Makefile.bor b/netsvcs/clients/Tokens/collection/Makefile.bor new file mode 100644 index 00000000000..b16b11fef9b --- /dev/null +++ b/netsvcs/clients/Tokens/collection/Makefile.bor @@ -0,0 +1,5 @@ + +NAME = collection +OBJFILES = $(OBJDIR)\collection.obj +!include <$(ACE_ROOT)\netsvcs\build.bor> + diff --git a/netsvcs/clients/Tokens/deadlock/Makefile.bor b/netsvcs/clients/Tokens/deadlock/Makefile.bor new file mode 100644 index 00000000000..112a766ff2a --- /dev/null +++ b/netsvcs/clients/Tokens/deadlock/Makefile.bor @@ -0,0 +1,5 @@ + +NAME = deadlock_detection_test +OBJFILES=$(OBJDIR)\$(NAME).obj +!include <$(ACE_ROOT)\netsvcs\build.bor> + diff --git a/netsvcs/clients/Tokens/invariant/Makefile.bor b/netsvcs/clients/Tokens/invariant/Makefile.bor new file mode 100644 index 00000000000..5d01b037b62 --- /dev/null +++ b/netsvcs/clients/Tokens/invariant/Makefile.bor @@ -0,0 +1,5 @@ + +NAME = invariant +OBJFILES=$(OBJDIR)\$(NAME).obj +!include <$(ACE_ROOT)\netsvcs\build.bor> + diff --git a/netsvcs/clients/Tokens/manual/Makefile.bor b/netsvcs/clients/Tokens/manual/Makefile.bor new file mode 100644 index 00000000000..a38035e9982 --- /dev/null +++ b/netsvcs/clients/Tokens/manual/Makefile.bor @@ -0,0 +1,5 @@ + +NAME = manual +OBJFILES = $(OBJDIR)\$(NAME).obj +!include <$(ACE_ROOT)\netsvcs\build.bor> + diff --git a/netsvcs/clients/Tokens/mutex/Makefile.bor b/netsvcs/clients/Tokens/mutex/Makefile.bor new file mode 100644 index 00000000000..2e74fc7f2fb --- /dev/null +++ b/netsvcs/clients/Tokens/mutex/Makefile.bor @@ -0,0 +1,5 @@ + +NAME = test_mutex +OBJFILES = $(OBJDIR)\$(NAME).obj +!include <$(ACE_ROOT)\netsvcs\build.bor> + diff --git a/netsvcs/clients/Tokens/rw_lock/Makefile.bor b/netsvcs/clients/Tokens/rw_lock/Makefile.bor new file mode 100644 index 00000000000..a707e2f688a --- /dev/null +++ b/netsvcs/clients/Tokens/rw_lock/Makefile.bor @@ -0,0 +1,5 @@ + +NAME = rw_locks +OBJFILES = $(OBJDIR)\$(NAME).obj +!include <$(ACE_ROOT)\netsvcs\build.bor> + |