Remove unused make file in resource/csdk/connectivity/ for x86 linux build
authorRavi Nanjundappa <nravi.n@samsung.com>
Tue, 23 Jun 2015 11:15:03 +0000 (16:45 +0530)
committerErich Keane <erich.keane@intel.com>
Tue, 23 Jun 2015 16:15:20 +0000 (16:15 +0000)
Now scons are used in place of makefiles. So need to remove this left out
common.mk file from git.

Change-Id: Ice0abdc0a02ff78a9fddb0e407613d242acdffbe
Signed-off-by: Ravi Nanjundappa <nravi.n@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/1403
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Erich Keane <erich.keane@intel.com>
resource/csdk/connectivity/build/common.mk [deleted file]

diff --git a/resource/csdk/connectivity/build/common.mk b/resource/csdk/connectivity/build/common.mk
deleted file mode 100644 (file)
index 858dda1..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-#/******************************************************************
-# *
-# * Copyright 2014 Samsung Electronics All Rights Reserved.
-# *
-# *
-# *
-# * Licensed under the Apache License, Version 2.0 (the "License");
-# * you may not use this file except in compliance with the License.
-# * You may obtain a copy of the License at
-# *
-# *      http://www.apache.org/licenses/LICENSE-2.0
-# *
-# * Unless required by applicable law or agreed to in writing, software
-# * distributed under the License is distributed on an "AS IS" BASIS,
-# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# * See the License for the specific language governing permissions and
-# * limitations under the License.
-# *
-#******************************************************************/
-
-##
-##     Definitions
-##
-SHELL                                          = /bin/bash
-PROJECT_NAME                           = connectivity_abstraction
-PROJECT_ROOT_PATH                      = ..
-PROJECT_API_PATH                               = $(PROJECT_ROOT_PATH)/api
-PROJECT_INC_PATH                               = $(PROJECT_ROOT_PATH)/inc
-PROJECT_SRC_PATH                       = $(PROJECT_ROOT_PATH)/src
-PROJECT_COMMON_INC_PATH        = $(PROJECT_ROOT_PATH)/common/inc
-PROJECT_COMMON_SRC_PATH        = $(PROJECT_ROOT_PATH)/common/src
-PROJECT_COMMON_PATH            = $(PROJECT_ROOT_PATH)/common
-PROJECT_OUT_PATH                       = $(PROJECT_ROOT_PATH)/build/out
-PROJECT_LIB_PATH                               = $(PROJECT_ROOT_PATH)/lib
-
-##
-##     macro
-##
-define MAKE_PROJECT_OUT_PATH
-       @if     [ ! -d $(PROJECT_OUT_PATH) ]; then      \
-       mkdir $(PROJECT_OUT_PATH);      \
-       fi
-endef
-
-
-##
-##     Commands
-##
-CC                     = gcc
-CXX                    = g++
-RM                     = rm -rf
-CP                     = cp
-MV                     = mv
-AR                     = ar
-LD                     = ld
-LN                     = ln
-CD                     = cd
-RANLIB         = ranlib
-
-