Begin port to GNU/kFreeBSD

This is just a minimal port to get Debian up and running; the rest will
be done later.
This commit is contained in:
Steven Chamberlain
2013-10-29 13:35:33 -05:00
committed by William Hubbs
parent 579838d2e7
commit 766d71c2d3
7 changed files with 26 additions and 6 deletions

9
mk/os-GNU-kFreeBSD.mk Normal file
View File

@@ -0,0 +1,9 @@
# Copyright (c) 2008 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.
# Generic definitions
CPPFLAGS+= -D_BSD_SOURCE -D_XOPEN_SOURCE=700
LIBDL= -Wl,-Bdynamic -ldl
LIBKVM?=
include ${MK}/os-BSD.mk

View File

@@ -3,7 +3,7 @@
# Generic definitions
_OS_SH= uname -s
_OS_SH= uname -s | tr '/' '-'
_OS:= $(shell ${_OS_SH})
OS?= ${_OS}
include ${MK}/os-${OS}.mk