cca7e9f7e1
This reworks the shell calls in the makefiles to use immediate evaluation and should improve parallel building. X-Gentoo-Bug: 289264 X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=289264
13 lines
251 B
Makefile
13 lines
251 B
Makefile
# Copyright (c) 2008 Roy Marples <roy@marples.name>
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
|
|
|
# Generic definitions
|
|
|
|
_OS_SH= uname -s
|
|
_OS:= $(shell ${_OS_SH})
|
|
OS?= ${_OS}
|
|
include ${MK}/os-${OS}.mk
|
|
|
|
RC_LIB= /$(LIBNAME)/rc
|
|
|