2009-05-01 15:11:40 +01:00
|
|
|
# Copyright (c) 2008 Roy Marples <roy@marples.name>
|
2008-03-26 17:53:37 +00:00
|
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
2008-01-05 19:25:55 +00:00
|
|
|
|
|
|
|
# Generic definitions
|
|
|
|
|
2008-01-10 19:50:01 +00:00
|
|
|
_OS_SH= uname -s
|
2011-01-29 17:32:38 -06:00
|
|
|
_OS:= $(shell ${_OS_SH})
|
|
|
|
OS?= ${_OS}
|
2008-03-19 15:22:20 +00: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
|
2008-01-05 19:25:55 +00:00
|
|
|
|