Merge branch 'connectivity-abstraction' to master
[platform/upstream/iotivity.git] / resource / csdk / stack / test / 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=debug`
22 # default to release build
23 BUILD    := release
24 PLATFORM := linux
25 CC       := g++
26
27 ifeq ($(ROOT_DIR), )
28 ROOT_DIR        = $(PWD)/../..
29 endif
30
31 # You must create the file "local.properties" on your local machine which contains any local paths, etc
32 # local.properties should NOT be committed to repo
33 include $(ROOT_DIR)/local.properties
34 # GTEST_DIR contains the path to Google Test libs and must be defined in local.properties
35 #  Example:
36 #  GTEST_DIR := /home/johndoe/utils/gtest-1.7.0
37
38 # NOTE:  to run app, make sure that LD_LIBRARY_PATH env variable
39 #        contains $(GTEST_DIR)/lib/.libs
40
41 OUT_DIR   := $(PWD)/$(BUILD)
42 OBJ_DIR   := $(OUT_DIR)/obj
43
44
45 OUT_DIR   := $(PWD)
46
47 LOGGER_DIR      = $(ROOT_DIR)/logger
48 OC_LOG_DIR      = $(ROOT_DIR)/../oc_logger
49 OCRANDOM_DIR    = $(ROOT_DIR)/ocrandom
50 OCTBSTACK_DIR   = $(ROOT_DIR)/stack
51
52 LOGGER_INC      = $(LOGGER_DIR)/include
53 OC_LOG_INC      = $(OC_LOG_DIR)/include
54 OCRANDOM_INC    = $(OCRANDOM_DIR)/include
55 OCTBSTACK_INC   = $(OCTBSTACK_DIR)/include
56
57 INC_DIRS        := -I$(LOGGER_INC)
58 INC_DIRS        += -I$(OC_LOG_INC)
59 INC_DIRS        += -I$(OCRANDOM_INC)
60 INC_DIRS        += -I$(OCTBSTACK_INC)
61 INC_DIRS        += -I$(OCTBSTACK_INC)/internal
62 INC_DIRS        += -I$(GTEST_DIR)/include
63
64 CC_FLAGS.debug      := -g -O0 -g3 -Wall -ffunction-sections -fdata-sections -fno-exceptions \
65                         -std=c++0x -pedantic $(INC_DIRS) -L$(ROOT_DIR)/linux/$(BUILD) -DTB_LOG
66 CC_FLAGS.release    := -Os -Wall -fdata-sections -Wl,--gc-sections -Wl,-s -fno-exceptions \
67                         -std=c++0x $(INC_DIRS) -L$(ROOT_DIR)/linux/$(BUILD) 
68                                         
69 LDLIBS          += -loctbstack -lpthread -lgtest -lgtest_main
70 CPPFLAGS        += $(CC_FLAGS.$(BUILD)) $(LDLIBS) -L$(GTEST_DIR)/lib/.libs
71
72 SOURCES := stacktests.cpp
73
74 OBJECTS:= $(patsubst %.c, $(OBJ_DIR)/%.o, $(SOURCES))
75
76 PROGRAMS := stacktests
77
78 all:    prep_dirs $(OBJECTS) $(PROGRAMS) 
79
80 prep_dirs:
81         -mkdir -p $(OUT_DIR)
82         -mkdir -p $(OBJ_DIR)
83
84 $(OBJ_DIR)/%.o: %.cpp
85         $(CC) -c $(CPPFLAGS) $< -o $@
86
87 stacktests: $(OBJ_DIR)/stacktests.o 
88         $(CC) $^ $(CPPFLAGS) -o $(OUT_DIR)/$(BUILD)/$@
89
90 .PHONY: clean
91
92 clean: legacy_clean
93         -rm -rf release
94         -rm -rf debug
95
96 legacy_clean:
97         rm -f *.o $(PROGRAMS)
98