From ef94bcb8905c8c8fefc272dbcb2d5ee0c4efbe35 Mon Sep 17 00:00:00 2001 From: Abdoulaye Walsimou Gaye Date: Tue, 18 Mar 2014 23:45:27 +0100 Subject: Move mk/ to core/ Signed-off-by: Abdoulaye Walsimou Gaye --- core/mk/targetsys.mk | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 core/mk/targetsys.mk (limited to 'core/mk/targetsys.mk') diff --git a/core/mk/targetsys.mk b/core/mk/targetsys.mk new file mode 100644 index 0000000..093fb7b --- /dev/null +++ b/core/mk/targetsys.mk @@ -0,0 +1,56 @@ +################################################################################ +# Embtoolkit +# Copyright(C) 2012 Abdoulaye Walsimou GAYE . +# +# This program is free software; you can distribute it and/or modify it +# under the terms of the GNU General Public License +# (Version 2 or later) published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +################################################################################ +# +# \file targetsys.mk +# \brief This file defines system environment of the target +# \brief (os, clib, etc.). +# \author Abdoulaye Walsimou GAYE +# \date October 2012 +################################################################################ + +embtk_os-$(CONFIG_EMBTK_OS_LINUX) := linux +embtk_os := $(or $(embtk_os-y),invalid-os) + +embtk_clib-$(CONFIG_EMBTK_CLIB_EGLIBC) := eglibc +embtk_clib-$(CONFIG_EMBTK_CLIB_GLIBC) := glibc +embtk_clib-$(CONFIG_EMBTK_CLIB_MUSL) := musl +embtk_clib-$(CONFIG_EMBTK_CLIB_UCLIBC) := uclibc +embtk_clib := $(or $(embtk_clib-y),invalid-clib) +embtk_clib_version := $(call embtk_get_pkgversion,$(embtk_clib)) + +# +# Host development machine info +# +ifeq ($(findstring linux,$(HOST_ARCH)),linux) +embtk_buildhost_os := linux +embtk_buildhost_os_type := linux +else ifeq ($(findstring freebsd,$(HOST_ARCH)),freebsd) +embtk_buildhost_os := freebsd +embtk_buildhost_os_type := bsd +else ifeq ($(findstring netbsd,$(HOST_ARCH)),netbsd) +embtk_buildhost_os := netbsd +embtk_buildhost_os_type := bsd +else ifeq ($(findstring openbsd,$(HOST_ARCH)),openbsd) +embtk_buildhost_os := openbsd +embtk_buildhost_os_type := bsd +else ifeq ($(findstring apple,$(HOST_ARCH)),apple) +embtk_buildhost_os := macos +embtk_buildhost_os_type := bsd +else +embtk_buildhost_os := unknown-host-os +endif -- cgit v1.2.3