summaryrefslogtreecommitdiff
path: root/mk/targetsys.mk
blob: e5980cc8a0531bc08b8cb23d8c397ba96ffcab19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
################################################################################
# Embtoolkit
# Copyright(C) 2012 Abdoulaye Walsimou GAYE <awg@embtoolkit.org>.
#
# 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 <http://www.gnu.org/licenses/>.
#
################################################################################
#
# \file         targetsys.mk
# \brief	This file defines system environment of the target
# \brief	(os, clib, etc.).
# \author       Abdoulaye Walsimou GAYE <awg@embtoolkit.org>
# \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_UCLIBC)	:= uclibc
embtk_clib				:= $(or $(embtk_clib-y),invalid-clib)