0N/A# $Id$
0N/A## @file
0N/A# Makefile for the VirtualBox FreeBSD Host Driver.
0N/A#
0N/A
0N/A#
0N/A#
0N/A# Copyright (C) 2006-2011 Oracle Corporation
0N/A#
0N/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;
0N/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 = vboxnetflt
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")
0N/A CFLAGS += -DRT_ARCH_X86
0N/A.elif (${MACHINE_ARCH} == "amd64")
0N/A CFLAGS += -DRT_ARCH_AMD64
0N/A.endif
0N/A
0N/ASRCS = \
0N/A VBoxNetFlt-freebsd.c \
0N/A VBoxNetFlt.c \
0N/A SUPR0IdcClient-freebsd.c \
0N/A SUPR0IdcClient.c \
0N/A SUPR0IdcClientComponent.c
0N/A
0N/ASRCS += device_if.h bus_if.h opt_netgraph.h
0N/A
0N/A.include <bsd.kmod.mk>
0N/A
0N/A