summaryrefslogtreecommitdiff
path: root/qpid/cpp/examples/qmf-agent/Makefile
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2008-09-15 15:37:59 +0000
committerTed Ross <tross@apache.org>2008-09-15 15:37:59 +0000
commit9659efe01f8d8cb2b4b3e1a27d16de35bd8d7db7 (patch)
tree116d3bc5acdaabfaa3147d58df7e01d16e94c2d8 /qpid/cpp/examples/qmf-agent/Makefile
parent3db85445da9067144012c8ef37366cc82c87e9c1 (diff)
downloadqpid-python-9659efe01f8d8cb2b4b3e1a27d16de35bd8d7db7.tar.gz
QPID-1274 - Changed C++ namespace for generated management code. Improved efficiency of generated functions to use const references for non-simple types.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@695511 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/examples/qmf-agent/Makefile')
-rw-r--r--qpid/cpp/examples/qmf-agent/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/examples/qmf-agent/Makefile b/qpid/cpp/examples/qmf-agent/Makefile
index 0759644670..0fc7ece413 100644
--- a/qpid/cpp/examples/qmf-agent/Makefile
+++ b/qpid/cpp/examples/qmf-agent/Makefile
@@ -25,7 +25,7 @@ OUT_FILE = $(SRC_DIR)/qmf-agent
CC = gcc
LIB_DIR = $(QPID_DIR)/cpp/src/.libs
-CC_INCLUDES = -I$(SRC_DIR) -I$(QPID_DIR)/cpp/src -I$(QPID_DIR)/cpp/src/gen -I$(GEN_DIR)
+CC_INCLUDES = -I$(SRC_DIR) -I$(QPID_DIR)/cpp/src -I$(QPID_DIR)/cpp/src/gen -I$(GEN_DIR)/org/apache/qpid/agent/example
CC_FLAGS = -g -O3
LD_FLAGS = -lqmfagent -L$(LIB_DIR)
SPEC_DIR = $(QPID_DIR)/specs
@@ -37,7 +37,7 @@ vpath %.d $(OBJ_DIR)
vpath %.o $(OBJ_DIR)
cpps = $(wildcard $(SRC_DIR)/*.cpp)
-cpps += $(wildcard $(GEN_DIR)/*.cpp)
+cpps += $(wildcard $(GEN_DIR)/org/apache/qpid/agent/example/*.cpp)
deps = $(addsuffix .d, $(basename $(cpps)))
objects = $(addsuffix .o, $(basename $(cpps)))