summaryrefslogtreecommitdiff
path: root/TAO/examples/POA
diff options
context:
space:
mode:
authorjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-12-22 23:29:17 +0000
committerjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-12-22 23:29:17 +0000
commit6d743f38b4e6d70a4b64af290f8d516280dc057c (patch)
tree0be29a1d2dbe9145668bfe1a9f1b8663bdebe274 /TAO/examples/POA
parent8d71c0b1f694cafba8241936898b52a21d3b3500 (diff)
downloadATCD-6d743f38b4e6d70a4b64af290f8d516280dc057c.tar.gz
ChangeLogTag: Thu Dec 22 15:24:38 2005 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'TAO/examples/POA')
-rw-r--r--TAO/examples/POA/Adapter_Activator/POA_Adapter_Activator.mpc8
-rw-r--r--TAO/examples/POA/Explicit_Activation/POA_Explicit_Activation.mpc8
-rw-r--r--TAO/examples/POA/On_Demand_Activation/POA_On_Demand_Activation.mpc8
-rw-r--r--TAO/examples/POA/Reference_Counted_Servant/Reference_Counted_Servant.mpc9
4 files changed, 28 insertions, 5 deletions
diff --git a/TAO/examples/POA/Adapter_Activator/POA_Adapter_Activator.mpc b/TAO/examples/POA/Adapter_Activator/POA_Adapter_Activator.mpc
index 89d427ced0e..d9d6f57ac0f 100644
--- a/TAO/examples/POA/Adapter_Activator/POA_Adapter_Activator.mpc
+++ b/TAO/examples/POA/Adapter_Activator/POA_Adapter_Activator.mpc
@@ -2,9 +2,15 @@
// $Id$
project(*Server): taoserver, minimum_corba {
- includes += ../Generic_Servant
libs += Generic_Servant
after += POA_Generic_Servant_Lib
+
+ specific(automake) {
+ includes += $(srcdir)/../Generic_Servant
+ } else {
+ includes += ../Generic_Servant
+ }
+
Source_Files {
server.cpp
}
diff --git a/TAO/examples/POA/Explicit_Activation/POA_Explicit_Activation.mpc b/TAO/examples/POA/Explicit_Activation/POA_Explicit_Activation.mpc
index 7f01d95962a..a130dec96a4 100644
--- a/TAO/examples/POA/Explicit_Activation/POA_Explicit_Activation.mpc
+++ b/TAO/examples/POA/Explicit_Activation/POA_Explicit_Activation.mpc
@@ -2,9 +2,15 @@
// $Id$
project(*Server): taoexe, portableserver, minimum_corba {
- includes += ../Generic_Servant
libs += Generic_Servant
after += POA_Generic_Servant_Lib
+
+ specific (automake) {
+ includes += $(srcdir)/../Generic_Servant
+ } else {
+ includes += ../Generic_Servant
+ }
+
Source_Files {
server.cpp
}
diff --git a/TAO/examples/POA/On_Demand_Activation/POA_On_Demand_Activation.mpc b/TAO/examples/POA/On_Demand_Activation/POA_On_Demand_Activation.mpc
index 57a09f749b8..8f125fc8b4c 100644
--- a/TAO/examples/POA/On_Demand_Activation/POA_On_Demand_Activation.mpc
+++ b/TAO/examples/POA/On_Demand_Activation/POA_On_Demand_Activation.mpc
@@ -2,9 +2,15 @@
// $Id$
project(*Server): taoexe, portableserver, minimum_corba {
- includes += ../Generic_Servant
libs += Generic_Servant
after += POA_Generic_Servant_Lib
+
+ specific (automake) {
+ includes += $(srcdir)/../Generic_Servant
+ } else {
+ includes += ../Generic_Servant
+ }
+
Source_Files {
server.cpp
Servant_Activator.cpp
diff --git a/TAO/examples/POA/Reference_Counted_Servant/Reference_Counted_Servant.mpc b/TAO/examples/POA/Reference_Counted_Servant/Reference_Counted_Servant.mpc
index 0b54971c2cb..a130dec96a4 100644
--- a/TAO/examples/POA/Reference_Counted_Servant/Reference_Counted_Servant.mpc
+++ b/TAO/examples/POA/Reference_Counted_Servant/Reference_Counted_Servant.mpc
@@ -2,11 +2,16 @@
// $Id$
project(*Server): taoexe, portableserver, minimum_corba {
- includes += ../Generic_Servant
libs += Generic_Servant
after += POA_Generic_Servant_Lib
+
+ specific (automake) {
+ includes += $(srcdir)/../Generic_Servant
+ } else {
+ includes += ../Generic_Servant
+ }
+
Source_Files {
server.cpp
}
}
-