13 lines
256 B
Makefile
13 lines
256 B
Makefile
# Copyright 2008 Roy Marples <roy@marples.name>
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
|
|
|
# Generic definitions
|
|
|
|
_OS_SH= uname -s
|
|
_OS!= ${_OS_SH}
|
|
OS?= ${_OS}$(shell ${_OS_SH})
|
|
include ${MK}/os-${OS}.mk
|
|
|
|
RC_LIB= /$(LIBNAME)/rc
|
|
|