diff options
author | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-09-28 21:36:13 +0000 |
---|---|---|
committer | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-09-28 21:36:13 +0000 |
commit | 4642c00ee13bc6bf6def8026c19d739ea64a4e0e (patch) | |
tree | 87b4b1590bb91c8454b5038d7ea8d187ae4a8a8c /protocols | |
parent | 27da83b8ffb251ee4e83b0b01be1b6abd7ea49dd (diff) | |
download | ATCD-4642c00ee13bc6bf6def8026c19d739ea64a4e0e.tar.gz |
ChangeLogTag: Tue Sep 28 14:31:10 2004 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/ace/RMCast/Makefile.am | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/protocols/ace/RMCast/Makefile.am b/protocols/ace/RMCast/Makefile.am index 8414b186fd8..cb9f30c53c6 100644 --- a/protocols/ace/RMCast/Makefile.am +++ b/protocols/ace/RMCast/Makefile.am @@ -8,17 +8,20 @@ ## 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 +ACE_ROOT = $(top_srcdir) +ACE_BUILDDIR = $(top_builddir) + nobase_include_HEADERS = lib_LTLIBRARIES = + ## Makefile.RMCast.am if BUILD_RMCAST lib_LTLIBRARIES += libACE_RMCast.la libACE_RMCast_la_CPPFLAGS = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_srcdir) \ + -I$(ACE_ROOT) \ + -I$(ACE_BUILDDIR) \ -DACE_RMCAST_BUILD_DLL libACE_RMCast_la_SOURCES = \ @@ -49,7 +52,7 @@ libACE_RMCast_la_SOURCES = \ RMCast_Worker.cpp libACE_RMCast_la_LIBADD = \ - $(top_srcdir)/ace/libACE.la + $(ACE_BUILDDIR)/ace/libACE.la nobase_include_HEADERS += \ RMCast.h \ |