diff options
author | doccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-03-27 07:16:25 +0000 |
---|---|---|
committer | doccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-03-27 07:16:25 +0000 |
commit | ee369a313236dd95dab05a276621d719f37df439 (patch) | |
tree | c099cfdb11fa273fd1ee9ab84cd50038d2fb7bdc /examples | |
parent | 4f591b9ce3e4c54bfd7ac3446a62263f9c95d2b4 (diff) | |
download | ATCD-ee369a313236dd95dab05a276621d719f37df439.tar.gz |
ChangeLogTag: Tue Mar 12 07:28:45 2001 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/IPC_SAP/ATM_SAP/Makefile.bor | 18 | ||||
-rw-r--r-- | examples/IPC_SAP/FIFO_SAP/Makefile.bor | 21 | ||||
-rw-r--r-- | examples/IPC_SAP/FILE_SAP/Makefile.bor | 17 | ||||
-rw-r--r-- | examples/IPC_SAP/SPIPE_SAP/Makefile.bor | 24 | ||||
-rw-r--r-- | examples/IPC_SAP/UPIPE_SAP/Makefile.bor | 19 |
5 files changed, 99 insertions, 0 deletions
diff --git a/examples/IPC_SAP/ATM_SAP/Makefile.bor b/examples/IPC_SAP/ATM_SAP/Makefile.bor new file mode 100644 index 00000000000..96c3f0fb2b8 --- /dev/null +++ b/examples/IPC_SAP/ATM_SAP/Makefile.bor @@ -0,0 +1,18 @@ +# +# Makefile for building the IPC_SAP ATM_SAP example +# + +NAMES = \ + CPP-client \ + CPP-server + +OBJFILES = $(OBJDIR)\$(NAME).obj + +CFLAGS = $(ACE_CFLAGS) + +CPPDIR = . + +LIBFILES = $(ACE_LIB) + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> diff --git a/examples/IPC_SAP/FIFO_SAP/Makefile.bor b/examples/IPC_SAP/FIFO_SAP/Makefile.bor new file mode 100644 index 00000000000..449d7bc179c --- /dev/null +++ b/examples/IPC_SAP/FIFO_SAP/Makefile.bor @@ -0,0 +1,21 @@ +# +# Makefile for building the IPC_SAP FIFO_SAP example +# + +NAMES = \ + FIFO-client \ + FIFO-Msg-client \ + FIFO-Msg-server \ +# FIFO-test \ + FIFO-Server \ + +OBJFILES = $(OBJDIR)\$(NAME).obj + +CFLAGS = $(ACE_CFLAGS) + +CPPDIR = . + +LIBFILES = $(ACE_LIB) + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> diff --git a/examples/IPC_SAP/FILE_SAP/Makefile.bor b/examples/IPC_SAP/FILE_SAP/Makefile.bor new file mode 100644 index 00000000000..36501f6c270 --- /dev/null +++ b/examples/IPC_SAP/FILE_SAP/Makefile.bor @@ -0,0 +1,17 @@ +# +# Makefile for building the IPC_SAP FILE_SAP example +# + +NAMES = \ + client + +OBJFILES = $(OBJDIR)\$(NAME).obj + +CFLAGS = $(ACE_CFLAGS) + +CPPDIR = . + +LIBFILES = $(ACE_LIB) + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> diff --git a/examples/IPC_SAP/SPIPE_SAP/Makefile.bor b/examples/IPC_SAP/SPIPE_SAP/Makefile.bor new file mode 100644 index 00000000000..a1bb6030f0b --- /dev/null +++ b/examples/IPC_SAP/SPIPE_SAP/Makefile.bor @@ -0,0 +1,24 @@ +# +# Makefile for building the IPC_SAP SPIPE_SAP ace examples +# + +NAMES = \ + client \ + server \ + consumer_msg \ + consumer_read \ + producer_msg \ + producer_read \ +# NPClient \ +# NPServer + +OBJFILES = $(OBJDIR)\$(NAME).obj + +CFLAGS = $(ACE_CFLAGS) + +CPPDIR = . + +LIBFILES = $(ACE_LIB) + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> diff --git a/examples/IPC_SAP/UPIPE_SAP/Makefile.bor b/examples/IPC_SAP/UPIPE_SAP/Makefile.bor new file mode 100644 index 00000000000..4f2d736e730 --- /dev/null +++ b/examples/IPC_SAP/UPIPE_SAP/Makefile.bor @@ -0,0 +1,19 @@ +# +# Makefile for building the IPC_SAP UPIPE_SAP example +# + +NAMES = \ + ex1 \ + ex2 \ + ex3 + +OBJFILES = $(OBJDIR)\$(NAME).obj + +CFLAGS = $(ACE_CFLAGS) + +CPPDIR = . + +LIBFILES = $(ACE_LIB) + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> |