diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2003-04-21 17:04:40 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2003-04-21 17:04:40 +0000 |
commit | 87f83ea4034de2f7faa8bdab4cf35d3521e24ed7 (patch) | |
tree | 6b0a24eae7602f8dab5dcf5b2b35208ee5aae81c /protocols | |
parent | b503784f0076930f682c8248c78326ddc6a90a69 (diff) | |
download | ATCD-87f83ea4034de2f7faa8bdab4cf35d3521e24ed7.tar.gz |
ChangeLogTag:Thu Apr 17 16:15:24 2003 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/ace/RMCast/Makefile.am | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/protocols/ace/RMCast/Makefile.am b/protocols/ace/RMCast/Makefile.am new file mode 100644 index 00000000000..5a183b2e90b --- /dev/null +++ b/protocols/ace/RMCast/Makefile.am @@ -0,0 +1,105 @@ +##---------------------------------------------------------------------------- +## $Id$ +## +## Makefile.am for ACE_RMCast library +##---------------------------------------------------------------------------- + +## +## Process this file with automake to create Makefile.in +## + +INCLUDES = -I$(top_builddir) -I$(top_srcdir) + +lib_LTLIBRARIES = libACE_RMCast.la + +libACE_RMCast_la_SOURCES = \ + RMCast.cpp \ + RMCast_Ack_Worker.cpp \ + RMCast_Fork.cpp \ + RMCast_Fragment.cpp \ + RMCast_IO_UDP.cpp \ + RMCast_Membership.cpp \ + RMCast_Module.cpp \ + RMCast_Module_Factory.cpp \ + RMCast_Partial_Message.cpp \ + RMCast_Proxy.cpp \ + RMCast_Reassembly.cpp \ + RMCast_Receiver_Module.cpp \ + RMCast_Reliable_Factory.cpp \ + RMCast_Reordering.cpp \ + RMCast_Resend_Handler.cpp \ + RMCast_Resend_Worker.cpp \ + RMCast_Retransmission.cpp \ + RMCast_Sequencer.cpp \ + RMCast_Singleton_Factory.cpp \ + RMCast_UDP_Event_Handler.cpp \ + RMCast_UDP_Proxy.cpp \ + RMCast_UDP_Reliable_Receiver.cpp \ + RMCast_UDP_Reliable_Sender.cpp + +libACE_RMCast_la_LIBADD = $(top_builddir)/ace/libACE.la + +## These are template source files. +TEMPLATE_FILES = \ + RMCast_Copy_On_Write.cpp \ + RMCast_Worker.cpp + +HEADER_FILES = \ + RMCast.h \ + RMCast_Ack_Worker.h \ + RMCast_Copy_On_Write.h \ + RMCast_Export.h \ + RMCast_Fork.h \ + RMCast_Fragment.h \ + RMCast_IO_UDP.h \ + RMCast_Membership.h \ + RMCast_Module.h \ + RMCast_Module_Factory.h \ + RMCast_Partial_Message.h \ + RMCast_Proxy.h \ + RMCast_Reassembly.h \ + RMCast_Receiver_Module.h \ + RMCast_Reliable_Factory.h \ + RMCast_Reordering.h \ + RMCast_Resend_Handler.h \ + RMCast_Resend_Worker.h \ + RMCast_Retransmission.h \ + RMCast_Sequencer.h \ + RMCast_Singleton_Factory.h \ + RMCast_UDP_Event_Handler.h \ + RMCast_UDP_Proxy.h \ + RMCast_UDP_Reliable_Receiver.h \ + RMCast_UDP_Reliable_Sender.h \ + RMCast_Worker.h + +INLINE_FILES = \ + RMCast.i \ + RMCast_Ack_Worker.i \ + RMCast_Copy_On_Write.i \ + RMCast_Fork.i \ + RMCast_Fragment.i \ + RMCast_IO_UDP.i \ + RMCast_Membership.i \ + RMCast_Module.i \ + RMCast_Module_Factory.i \ + RMCast_Partial_Message.i \ + RMCast_Proxy.i \ + RMCast_Reassembly.i \ + RMCast_Receiver_Module.i \ + RMCast_Reliable_Factory.i \ + RMCast_Reordering.i \ + RMCast_Resend_Handler.i \ + RMCast_Resend_Worker.i \ + RMCast_Retransmission.i \ + RMCast_Sequencer.i \ + RMCast_Singleton_Factory.i \ + RMCast_UDP_Event_Handler.i \ + RMCast_UDP_Proxy.i \ + RMCast_UDP_Reliable_Receiver.i \ + RMCast_UDP_Reliable_Sender.i \ + RMCast_Worker.i + +pkginclude_HEADERS = \ + $(HEADER_FILES) \ + $(INLINE_FILES) \ + $(TEMPLATE_FILES) |