2529d1285a186c4054c51a8dfb0366a614267cca
[platform/upstream/iotivity.git] / resource / csdk / ocmalloc / test / linux / 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 OCLOGGER_DIR    = $(ROOT_DIR)/logger
48 OCMALLOC_DIR    = $(ROOT_DIR)/ocmalloc
49 OCRANDOM_DIR    = $(ROOT_DIR)/ocrandom
50 OCSOCKET_DIR    = $(ROOT_DIR)/ocsocket
51 OCTBSTACK_DIR   = $(ROOT_DIR)/stack
52
53 OCLOGGER_INC    = $(OCLOGGER_DIR)/include
54 OCMALLOC_INC    = $(OCMALLOC_DIR)/include
55 OCRANDOM_INC    = $(OCRANDOM_DIR)/include
56 OCSOCKET_INC    = $(OCSOCKET_DIR)/include
57 OCTBSTACK_INC   = $(OCTBSTACK_DIR)/include
58
59 INC_DIRS        := -I$(OCLOGGER_INC)
60 INC_DIRS        += -I$(OCMALLOC_INC)
61 INC_DIRS        += -I$(OCRANDOM_INC)
62 INC_DIRS        += -I$(OCSOCKET_INC)
63 INC_DIRS        += -I$(OCTBSTACK_INC)
64 INC_DIRS        += -I$(OCTBSTACK_INC)/internal
65 INC_DIRS  += -I$(GTEST_DIR)/include
66
67 CC_FLAGS.debug      := -g -O0 -g3 -Wall -ffunction-sections -fdata-sections -fno-exceptions \
68                         -std=c++0x -pedantic $(INC_DIRS) -L$(ROOT_DIR)/linux/$(BUILD) -DTB_LOG
69 CC_FLAGS.release    := -Os -Wall -fdata-sections -Wl,--gc-sections -Wl,-s -fno-exceptions \
70                         -std=c++0x $(INC_DIRS) -L$(ROOT_DIR)/linux/$(BUILD)
71
72 LDLIBS          += -loctbstack -lpthread
73 CPPFLAGS        += $(CC_FLAGS.$(BUILD)) $(LDLIBS) $(GTEST_DIR)/lib/.libs/libgtest.a \
74                            $(GTEST_DIR)/lib/.libs/libgtest_main.a
75
76 SOURCES := unittest.cpp
77
78 OBJECTS:= $(patsubst %.c, $(OBJ_DIR)/%.o, $(SOURCES))
79
80 PROGRAMS := unittest
81
82 all:    prep_dirs $(OBJECTS) $(PROGRAMS)
83
84 prep_dirs:
85         -mkdir -p $(OUT_DIR)
86         -mkdir -p $(OBJ_DIR)
87
88 $(OBJ_DIR)/%.o: %.cpp
89         $(CC) -c $(CPPFLAGS) $< -o $@
90
91 unittest: $(OBJ_DIR)/unittest.o
92         $(CC) $^ $(CPPFLAGS) -o $(OUT_DIR)/$(BUILD)/$@
93
94 .PHONY: clean
95
96 clean: legacy_clean
97         -rm -rf release
98         -rm -rf debug
99
100 legacy_clean:
101         rm -f *.o $(PROGRAMS)