2015-12-04 16:52:19 -06:00
|
|
|
# Copyright (c) 2008-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
|
|
|
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
2008-01-05 19:25:55 +00:00
|
|
|
|
|
|
|
# Generic definitions
|
|
|
|
|
2013-10-29 13:35:33 -05:00
|
|
|
_OS_SH= uname -s | tr '/' '-'
|
2011-01-29 17:32:38 -06:00
|
|
|
_OS:= $(shell ${_OS_SH})
|
|
|
|
OS?= ${_OS}
|
2012-08-31 09:22:12 -05:00
|
|
|
include ${MK}/os-prefix.mk
|
2016-06-13 17:43:36 -05:00
|
|
|
include ${MK}/os-${OS}.mk
|
2008-01-05 19:25:55 +00:00
|
|
|
|
2008-01-10 19:50:01 +00:00
|
|
|
RC_LIB= /$(LIBNAME)/rc
|