7dba647d4355efdcc589bf135552f75e05c0a538
[contrib/iotivity.git] / resource / csdk / libcoap-4.1.1 / 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 # override with `make PLATFORM=arduinomega` or `make PLATFORM=arduinodue`
23 # default to release build
24 # default to build for linux
25 BUILD    := release
26 #other options are arduinomega, arduinodue
27 PLATFORM=linux
28 #other options are arduino
29 PLATFORM_TYPE=linux
30 # override with `make PLATFORM=arduinomega ARDUINOWIFI=1` to enable Arduino WiFi shield
31 ARDUINOWIFI := 0
32
33 ifeq ($(ROOT_DIR), )
34         ROOT_DIR = ..
35 endif
36 ifeq ($(PLATFORM), "")
37         PLATFORM := "linux"
38 endif
39
40 OCSOCK_DIR    = $(ROOT_DIR)/ocsocket
41 OC_LOG_DIR    = $(ROOT_DIR)/../oc_logger
42 LOGGER_DIR    = $(ROOT_DIR)/logger
43 RANDOM_DIR    = $(ROOT_DIR)/ocrandom
44 STACK_DIR     = $(ROOT_DIR)/stack
45 OCMALLOC_DIR  = $(ROOT_DIR)/ocmalloc
46 INC_DIRS      = -I$(OCSOCK_DIR)/include/ -I$(LOGGER_DIR)/include -I$(RANDOM_DIR)/include -I$(OCMALLOC_DIR)/include -I$(OC_LOG_DIR)/include
47
48 # Note for Arduino: The CC flag is set to the C++ compiler since Arduino build 
49 # includes Time.h header file which has C++ style definitions.
50 ifeq ($(PLATFORM),android)
51     CXX=arm-linux-androideabi-g++
52     CC=arm-linux-androideabi-gcc
53     AR=arm-linux-androideabi-ar
54     RANLIB=arm-linux-androideabi-ranlib
55     CFLAGS_PLATFORM =  -DWITH_POSIX -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16
56     LDFLAGS_PLATFORM = -march=armv7-a -Wl,--fix-cortex-a8 -llog
57 else ifeq ($(PLATFORM),linux)
58     PLATFORM_TYPE:=linux
59     CXX=g++
60     CC=gcc
61     AR=ar
62     RANLIB=ranlib
63     CFLAGS_PLATFORM = -std=gnu99 -DWITH_POSIX
64 else ifeq ($(PLATFORM),arduinomega)
65     PLATFORM_TYPE:=arduino
66     include $(ROOT_DIR)/local.properties
67     include $(ROOT_DIR)/$(PLATFORM).properties
68     CC=$(ARDUINO_TOOLS_DIR)/avr-g++
69 else ifeq ($(PLATFORM),arduinodue)
70     PLATFORM_TYPE:=arduino
71     include $(ROOT_DIR)/local.properties
72     include $(ROOT_DIR)/$(PLATFORM).properties
73     CC=$(ARDUINO_TOOLS_DIR)/arm-none-eabi-g++
74 else
75    $(error Wrong value for PLATFORM !!)
76 endif
77
78 ifeq ($(PLATFORM_TYPE),arduino)
79     ifeq ($(ARDUINOWIFI),1)
80         SOURCES += ocsocket_arduino_wifi.c
81         ARDUINO_SHIELD_TYPE := "/wifi_shield"
82     else
83         SOURCES += ocsocket_arduino.c
84         ARDUINO_SHIELD_TYPE := "/ethernet_shield"
85     endif
86     SOURCESCPP:= Time.cpp
87     OBJECTSCPP:= $(patsubst %.cpp, %.o, $(SOURCESCPP))
88     VPATH := $(SDIR_ARD_TIME)
89 else
90     SOURCES += ocsocket.c
91 endif
92
93 OUT_DIR   := ./$(PLATFORM)$(ARDUINO_SHIELD_TYPE)/$(BUILD)
94 OBJ_DIR   := $(OUT_DIR)/obj
95
96 CC_FLAGS.debug := -O0 -g3 -Wall -ffunction-sections -fdata-sections -fno-exceptions -pedantic \
97 -DTB_LOG
98 CC_FLAGS.release := -Os -Wall -ffunction-sections -fdata-sections -fno-exceptions
99
100 SOURCES+= pdu.c net.c debug.c encode.c uri.c coap_list.c hashkey.c \
101           str.c option.c async.c subscribe.c block.c logger.c ocrandom.c ocmalloc.c  oc_logger.c oc_console_logger.c
102 VPATH += $(OCSOCK_DIR)/src:$(LOGGER_DIR)/src:$(RANDOM_DIR)/src:$(OCMALLOC_DIR)/src:$(OC_LOG_DIR)/c
103
104 OBJECTS:= $(patsubst %.c, %.o, $(SOURCES))
105
106 all: prep_dirs libcoap.a
107
108 prep_dirs:
109         -mkdir -p $(PLATFORM)
110         -mkdir -p $(OUT_DIR)
111         -mkdir -p $(OBJ_DIR)
112
113 %.o: %.c
114         $(CC) -c $(CC_FLAGS.$(BUILD)) $(CFLAGS_PLATFORM) $(INC_DIRS) $(INC_DIR_PLATFORM) $< -o $(OBJ_DIR)/$@
115
116 %.o: %.cpp
117         $(CXX) -c $(CC_FLAGS.$(BUILD)) $(CFLAGS_PLATFORM) $(INC_DIRS) $(INC_DIR_PLATFORM) $< -o $(OBJ_DIR)/$@
118
119 libcoap.a: $(OBJECTS) $(OBJECTSCPP)
120         $(AR) rcs $(OUT_DIR)/$@ $(addprefix $(OBJ_DIR)/,$^)
121         $(RANLIB) $(OUT_DIR)/$@
122
123 .PHONY: clean
124
125 clean:  legacy_clean
126         -rm -rf linux
127         -rm -rf arduinomega
128         -rm -rf arduinodue
129
130 legacy_clean:
131         rm -f *.o libcoap.a
132         rm -rf release
133         rm -rf debug
134