Added commentary to the public API referring to new functionality of
[platform/upstream/iotivity.git] / oc_logger / cpp / Makefile
1 # //******************************************************************
2 # //
3 # // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 # //
5 # //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 # //
7 # // Licensed under the Apache License, Version 2.0 (the "License");
8 # // you may not use this file except in compliance with the License.
9 # // You may obtain a copy of the License at
10 # //
11 # //      http://www.apache.org/licenses/LICENSE-2.0
12 # //
13 # // Unless required by applicable law or agreed to in writing, software
14 # // distributed under the License is distributed on an "AS IS" BASIS,
15 # // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # // See the License for the specific language governing permissions and
17 # // limitations under the License.
18 # //
19 # //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20 #
21
22 BIN_DIR=../bin
23 LIB_DIR=../lib
24
25 INC=-I../include/
26
27 LIB=$(LIB_DIR)/oc_logger.a
28
29 BUILD := release
30
31 CXX_FLAGS.debug=-Wall -std=c++0x -O0 -g
32 CXX_FLAGS.release=-Wall -std=c++0x -O2
33
34 CXX := g++
35
36 CXX_X=$(CXX) $(CXX_FLAGS.$(BUILD)) $(INC)
37
38 all: dirs targets
39
40 dirs:
41         -mkdir -p $(BIN_DIR)/targets
42
43 targets:
44         $(CXX_X) -c -o $(BIN_DIR)/targets/oc_ostream_logger.o oc_ostream_logger.cpp
45
46 clean:
47         rm -f ./test_logging ./*.o