diff options
| author | Ted Ross <tross@apache.org> | 2008-07-11 20:14:07 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2008-07-11 20:14:07 +0000 |
| commit | 2fd1b08b605d2664394ff5708c3cbaebd1dc21ef (patch) | |
| tree | d0b5c7cfa8f31a1fc721fb45d7ca77a027875b7d /cpp/examples/qmf-agent/Makefile | |
| parent | 13e2db2a3d0d14881da3c088f084385740df0731 (diff) | |
| download | qpid-python-2fd1b08b605d2664394ff5708c3cbaebd1dc21ef.tar.gz | |
QPID-1174 Remote Management Agent for management of external components
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@676067 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/examples/qmf-agent/Makefile')
| -rw-r--r-- | cpp/examples/qmf-agent/Makefile | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/cpp/examples/qmf-agent/Makefile b/cpp/examples/qmf-agent/Makefile new file mode 100644 index 0000000000..cc33dd1dc6 --- /dev/null +++ b/cpp/examples/qmf-agent/Makefile @@ -0,0 +1,85 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + +SRC_DIR = . +QPID_DIR = ../../.. +SCHEMA_FILE = $(SRC_DIR)/schema.xml +GEN_DIR = $(SRC_DIR)/gen +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_FLAGS = -g -O2 +LD_FLAGS = -lqpidclient -lqpidcommon -L$(LIB_DIR) +SPEC_DIR = $(QPID_DIR)/specs +MGEN_DIR = $(QPID_DIR)/cpp/managementgen +TEMPLATE_DIR = $(MGEN_DIR)/templates +MGEN = $(MGEN_DIR)/main.py +OBJ_DIR = $(SRC_DIR)/.libs + +vpath %.cpp $(SRC_DIR):$(GEN_DIR) +vpath %.d $(OBJ_DIR) +vpath %.o $(OBJ_DIR) + +cpps = $(wildcard $(SRC_DIR)/*.cpp) +cpps += $(wildcard $(GEN_DIR)/*.cpp) +deps = $(addsuffix .d, $(basename $(cpps))) +objects = $(addsuffix .o, $(basename $(cpps))) + +.PHONY: all clean + +#========================================================== +# Pass 0: generate source files from schema +ifeq ($(MAKELEVEL), 0) + +all: + $(MGEN) $(SCHEMA_FILE) $(SPEC_DIR)/management-types.xml $(TEMPLATE_DIR) $(GEN_DIR) + $(MAKE) + +clean: + rm -rf $(GEN_DIR) $(OUT_FILE) *.d *.o + + +#========================================================== +# Pass 1: generate dependencies +else ifeq ($(MAKELEVEL), 1) + +all: $(deps) + $(MAKE) + +%.d : %.cpp + $(CC) -M $(CC_FLAGS) $(CC_INCLUDES) $< > $@ + + +#========================================================== +# Pass 2: build project +else ifeq ($(MAKELEVEL), 2) + +$(OUT_FILE) : $(objects) + $(CC) -o $(OUT_FILE) $(CC_FLAGS) $(LD_FLAGS) $(objects) + +include $(deps) + +%.o : %.cpp + $(CC) -c $(CC_FLAGS) $(CC_INCLUDES) -o $@ $< + +endif + + |
