Makefile revision 4b7b314038b5d0bbed7585c0a87901fc2b004409
0N/A# $Id$
0N/A## @file
0N/A# Makefile for the VirtualBox FreeBSD Host Driver.
0N/A#
2362N/A
0N/A#
0N/A#
0N/A# Copyright (C) 2006-2007 Oracle Corporation
0N/A#
2362N/A# This file is part of VirtualBox Open Source Edition (OSE), as
0N/A# available from http://www.virtualbox.org. This file is free software;
2362N/A# you can redistribute it and/or modify it under the terms of the GNU
0N/A# General Public License (GPL) as published by the Free Software
0N/A# Foundation, in version 2 as it comes in the "COPYING" file of the
0N/A# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
0N/A# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
0N/A#
0N/A
0N/AKMOD = vboxnetadp
0N/A
0N/ACFLAGS += -DRT_OS_FREEBSD -DIN_RING0 -DIN_RT_R0 -DIN_SUP_R0 -DVBOX -DRT_WITH_VBOX -Iinclude -I. -Ir0drv -w -DVBOX_WITH_HARDENING -DVIMAGE
0N/A
0N/A.if (${MACHINE_ARCH} == "i386")
2365N/A CFLAGS += -DRT_ARCH_X86
2365N/A.elif (${MACHINE_ARCH} == "amd64")
2365N/A CFLAGS += -DRT_ARCH_AMD64
0N/A.endif
0N/A
0N/ASRCS = \
0N/A VBoxNetAdp-freebsd.c \
0N/A VBoxNetAdp.c
0N/A
0N/ASRCS += device_if.h bus_if.h
0N/A
0N/A.include <bsd.kmod.mk>
0N/A
0N/A