iotivity 0.9.0
[platform/upstream/iotivity.git] / resource / csdk / logger / 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 # override with `make BUILD=release`
22 # default to release build
23 BUILD := release
24 PLATFORM := linux
25
26 ROOT_DIR = ..
27
28 # You must create the file "local.properties" on your local machine which contains any local paths, etc
29 # local_settings.mk should NOT be committed to repo
30 include $(ROOT_DIR)/local.properties
31 # GTEST_DIR contains the path to Google Test libs and must be defined in local.properties
32 #  Example:
33 #  GTEST_DIR := /home/johndoe/utils/gtest-1.7.0
34
35 # NOTE:  to run app, make sure that LD_LIBRARY_PATH env variable
36 #        contains $(GTEST_DIR)/lib/.libs
37                                 
38 CC := gcc
39 CXX     := g++
40
41 PROG := loggertest
42
43 SRC_DIR := ./src
44 TEST_DIR:= ./test
45 INC_DIR := ./include
46
47 CC_FLAGS.debug := -O0 -g3 -Wall -c -fmessage-length=0 -pedantic -std=c99 -fpic -DTB_LOG
48 CC_FLAGS.release := -Os -Wall -c -fmessage-length=0 -std=c99 -fpic 
49 CC_FLAGS := $(CC_FLAGS.$(BUILD))
50
51 CXX_FLAGS.debug := -O0 -g3 -Wall -c -fmessage-length=0 -pedantic -std=c++0x -fpic -DTB_LOG
52 CXX_FLAGS.release := -Os -Wall -c -fmessage-length=0 -std=c++0x -fpic 
53 CXX_FLAGS := $(CXX_FLAGS.$(BUILD))
54
55 INC     := -I$(SRC_DIR)  
56 INC += -I$(TEST_DIR)
57 INC += -I$(INC_DIR)
58 INC += -I$(GTEST_DIR)/include
59
60
61 # using make's computed variables to select object and bin folders
62 # depending on the build type
63 OBJ_DIR.debug := ./obj/debug
64 OBJ_DIR.release := ./obj/release
65 OBJ_DIR := $(OBJ_DIR.$(BUILD))
66
67 BIN_DIR.debug := ./bin/debug
68 BIN_DIR.release := ./bin/release
69 BIN_DIR := $(BIN_DIR.$(BUILD))
70
71 C_FILES := $(wildcard $(SRC_DIR)/*.c)
72 #CPP_FILES := $(wildcard $(SRC_DIR)/*.cpp)
73 CPP_FILES := $(wildcard $(TEST_DIR)/*.cpp)
74 OBJ_FILES := $(addprefix $(OBJ_DIR)/,$(notdir $(CPP_FILES:.cpp=.o) $(C_FILES:.c=.o)))
75 H_FILES := $(wildcard $(TEST_DIR)/*.h)
76 H_FILES += $(wildcard $(INC_DIR)/*.h)
77 LD_FLAGS := -L/usr/lib
78 LD_FLAGS += -L$(GTEST_DIR)/lib/.libs
79
80
81 LIBS := -lpthread
82 LIBS += -lgtest
83 LIBS += -lgtest_main
84
85
86 all: $(PROG)
87         
88 $(PROG): $(OBJ_FILES)  
89         $(CXX) -o $@ $^ $(LD_FLAGS) $(LIBS)     
90         mv ./$(PROG) ./$(BIN_DIR)
91
92 #$(OBJ_DIR)/%.o: $(SRC_DIR)/%.c $(SRC_DIR)/%.h $(H_FILES)
93 #       $(CC) $(CC_FLAGS) $(INC) -c -o $@ $<
94
95 $(OBJ_DIR)/%.o: $(SRC_DIR)/%.c $(INC_DIR)/%.h $(H_FILES)
96         $(CC) $(CC_FLAGS) $(INC) -c -o $@ $<
97
98 $(OBJ_DIR)/%.o: $(TEST_DIR)/%.cpp $(H_FILES)
99         $(CXX) $(CXX_FLAGS) $(INC) -c -o $@ $<
100
101         
102 .PHONY: clean
103 clean :
104         rm -rf ./obj/debug/*
105         rm -rf ./obj/release/*
106         rm -rf ./lib/debug/*
107         rm -rf ./lib/release/*
108         rm -rf ./bin/debug/*
109         rm -rf ./bin/release/*
110         rm -rf ./test/tst_*.txt
111
112
113 .PHONY: print_vars
114
115 print_vars:
116         @echo ""
117         @echo 'BUILD     = '$(value BUILD)
118         @echo 'INC       = '$(value INC)
119         @echo 'CPP_FILES = '$(value CPP_FILES)
120         @echo 'LIBS      = '$(value LIBS)
121         
122