1# Copyright (c) 2011 The Chromium OS Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5# This file contains definitions of utilities which are used by the 6# build system. No utility should be used directly by-name in the 7# makefiles; instead, each utility should have a definition here and 8# the macro value should be used. 9# 10# This makes it easy to ensure there are no host OS utility 11# dependencies when cross compiling. 12 13export MKDIR = /bin/mkdir 14export AR = /usr/bin/ar 15export ECHO = /bin/echo 16export MESSAGE = $(ECHO) "$(foreach v,$(shell seq $(MAKELEVEL))," ") [$(MAKELEVEL)] " 17export INSTALL = /usr/bin/install 18export LINK = /bin/ln 19