summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-09-28 22:22:28 +0000
committerjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-09-28 22:22:28 +0000
commita6bba2f1348e77748a78db16239dbe076fc5a735 (patch)
tree25d32e3ea7633fa62444ad4c44edc32835c2e745 /protocols
parent4642c00ee13bc6bf6def8026c19d739ea64a4e0e (diff)
downloadATCD-a6bba2f1348e77748a78db16239dbe076fc5a735.tar.gz
ChangeLogTag: Tue Sep 28 15:16:54 2004 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'protocols')
-rw-r--r--protocols/ace/RMCast/Makefile.am5
-rw-r--r--protocols/ace/TMCast/Makefile.am16
2 files changed, 17 insertions, 4 deletions
diff --git a/protocols/ace/RMCast/Makefile.am b/protocols/ace/RMCast/Makefile.am
index cb9f30c53c6..a9b8fb207ea 100644
--- a/protocols/ace/RMCast/Makefile.am
+++ b/protocols/ace/RMCast/Makefile.am
@@ -8,6 +8,8 @@
## MPC Command:
## /acebuilds/ACE_wrappers-repository/bin/mwc.pl -include /acebuilds/MPC/config -include /acebuilds/MPC/templates -feature_file /acebuilds/ACE_wrappers-repository/local.features -noreldefs -type automake -hierarchy -make_coexistence -exclude build,Kokyu
+includedir = @includedir@/ace/RMCast
+
ACE_ROOT = $(top_srcdir)
ACE_BUILDDIR = $(top_builddir)
@@ -51,6 +53,9 @@ libACE_RMCast_la_SOURCES = \
RMCast_UDP_Reliable_Sender.cpp \
RMCast_Worker.cpp
+libACE_RMCast_la_LDFLAGS = \
+ -version-number @ACE_MAJOR@:@ACE_MINOR@:@ACE_BETA@
+
libACE_RMCast_la_LIBADD = \
$(ACE_BUILDDIR)/ace/libACE.la
diff --git a/protocols/ace/TMCast/Makefile.am b/protocols/ace/TMCast/Makefile.am
index 638ffd5ecca..7704dcbd29e 100644
--- a/protocols/ace/TMCast/Makefile.am
+++ b/protocols/ace/TMCast/Makefile.am
@@ -8,8 +8,14 @@
## MPC Command:
## /acebuilds/ACE_wrappers-repository/bin/mwc.pl -include /acebuilds/MPC/config -include /acebuilds/MPC/templates -feature_file /acebuilds/ACE_wrappers-repository/local.features -noreldefs -type automake -hierarchy -make_coexistence -exclude build,Kokyu
+includedir = @includedir@/ace/TMCast
+
+ACE_ROOT = $(top_srcdir)
+ACE_BUILDDIR = $(top_builddir)
+
nobase_include_HEADERS =
lib_LTLIBRARIES =
+
## Makefile.TMCast.am
if BUILD_EXCEPTIONS
@@ -17,17 +23,19 @@ if BUILD_THREADS
lib_LTLIBRARIES += libTMCast.la
libTMCast_la_CPPFLAGS = \
- -I$(top_builddir) \
- -I$(top_srcdir) \
- -I$(top_srcdir) \
+ -I$(ACE_ROOT) \
+ -I$(ACE_BUILDDIR) \
-DTMCAST_BUILD_DLL
libTMCast_la_SOURCES = \
Group.cpp \
Protocol.cpp
+libTMCast_la_LDFLAGS = \
+ -version-number @ACE_MAJOR@:@ACE_MINOR@:@ACE_BETA@
+
libTMCast_la_LIBADD = \
- $(top_builddir)/ace/libACE.la
+ $(ACE_BUILDDIR)/ace/libACE.la
nobase_include_HEADERS += \
Export.hpp \