From 2ce49400d9a482263dd2c095068b3def2b505840 Mon Sep 17 00:00:00 2001 From: Ravi Nanjundappa Date: Tue, 23 Jun 2015 16:45:03 +0530 Subject: [PATCH] Remove unused make file in resource/csdk/connectivity/ for x86 linux build 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 Reviewed-on: https://gerrit.iotivity.org/gerrit/1403 Tested-by: jenkins-iotivity Reviewed-by: Erich Keane --- resource/csdk/connectivity/build/common.mk | 60 ------------------------------ 1 file changed, 60 deletions(-) delete mode 100644 resource/csdk/connectivity/build/common.mk diff --git a/resource/csdk/connectivity/build/common.mk b/resource/csdk/connectivity/build/common.mk deleted file mode 100644 index 858dda1..0000000 --- a/resource/csdk/connectivity/build/common.mk +++ /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 - - -- 2.7.4