VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/Support/freebsd/Makefile@ 25528

Last change on this file since 25528 was 25528, checked in by vboxsync, 15 years ago

IPRT,SUPDrv,++: AssertMsg[12] -> AssertMsg1Weak, AssertMsg1, AssertMsg2Weak, AssertMsg2, AssertMsg2WeakV and AssertMsg2V. Doing more of the assertion machinery in common/misc/assert.cpp to avoid code duplication (ring-0). Major SUPDrv version bump.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.7 KB
Line 
1# $Id: Makefile 25528 2009-12-20 23:24:59Z vboxsync $
2## @file
3# Makefile for the VirtualBox FreeBSD Host Driver.
4#
5
6#
7#
8# Copyright (C) 2006-2007 Sun Microsystems, Inc.
9#
10# This file is part of VirtualBox Open Source Edition (OSE), as
11# available from http://www.virtualbox.org. This file is free software;
12# you can redistribute it and/or modify it under the terms of the GNU
13# General Public License (GPL) as published by the Free Software
14# Foundation, in version 2 as it comes in the "COPYING" file of the
15# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17#
18# The contents of this file may alternatively be used under the terms
19# of the Common Development and Distribution License Version 1.0
20# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
21# VirtualBox OSE distribution, in which case the provisions of the
22# CDDL are applicable instead of those of the GPL.
23#
24# You may elect to license modified versions of this file under the
25# terms and conditions of either the GPL or the CDDL or both.
26#
27# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
28# Clara, CA 95054 USA or visit http://www.sun.com if you need
29# additional information or have any questions.
30#
31
32KMOD = vboxdrv
33
34CFLAGS += -DRT_OS_FREEBSD -DIN_RING0 -DIN_RT_R0 -DIN_SUP_R0 -DVBOX -DRT_WITH_VBOX -Iinclude -I. -Ir0drv -w -DVBOX_WITH_HARDENING -DVBOX_WITH_64_BITS_GUESTS
35
36.if (${MACHINE_ARCH} == "i386")
37 CFLAGS += -DRT_ARCH_X86
38.elif (${MACHINE_ARCH} == "amd64")
39 CFLAGS += -DRT_ARCH_AMD64
40.endif
41
42SRCS = \
43 SUPDrv.c \
44 SUPDrvSem.c \
45
46# Include needed interface headers so they are created during build
47SRCS += \
48 device_if.h \
49 bus_if.h
50
51.PATH: ${.CURDIR}/freebsd
52SRCS += \
53 SUPDrv-freebsd.c
54
55.PATH: ${.CURDIR}/alloc
56SRCS += \
57 heapsimple.c
58
59.PATH: ${.CURDIR}/common/err
60SRCS += \
61 RTErrConvertFromErrno.c \
62 RTErrConvertToErrno.c
63
64.PATH: ${.CURDIR}/common/log
65SRCS += \
66 log.c \
67 logellipsis.c \
68 logrel.c \
69 logrelellipsis.c \
70 logcom.c \
71 logformat.c
72
73.PATH: ${.CURDIR}/common/misc
74SRCS += \
75 RTAssertMsg1Weak.c \
76 RTAssertMsg2V.c \
77 RTAssertMsg2Weak.c \
78 RTAssertMsg2WeakV.c \
79 assert.c \
80 handletable.c \
81 handletablectx.c \
82 once.c \
83 thread.c
84
85.PATH: ${.CURDIR}/common/string
86SRCS += \
87 strformat.c \
88 strformatrt.c \
89 strformattype.c \
90 strprintf.c \
91 strtonum.c \
92 memchr.c \
93 string.c
94
95.PATH: ${.CURDIR}/common/rand
96SRCS += \
97 rand.c \
98 randadv.c \
99 randparkmiller.c
100
101.PATH: ${.CURDIR}/common/path
102SRCS += \
103 RTPathStripFilename.c
104
105.PATH: ${.CURDIR}/common/checksum
106SRCS += \
107 crc32.c \
108 ipv4.c
109
110.PATH: ${.CURDIR}/common/table
111SRCS += \
112 avlpv.c
113
114.PATH: ${.CURDIR}/generic
115SRCS += \
116 uuid-generic.c \
117 RTAssertShouldPanic-generic.c \
118 RTLogWriteDebugger-generic.c \
119 RTLogWriteStdOut-stub-generic.c \
120 RTLogWriteStdErr-stub-generic.c \
121 RTLogWriteUser-generic.c \
122 RTRandAdvCreateSystemFaster-generic.c \
123 RTRandAdvCreateSystemTruer-generic.c \
124 RTTimerCreate-generic.c \
125 timer-generic.c \
126 mppresent-generic.c
127
128.PATH: ${.CURDIR}/r0drv
129SRCS += \
130 alloc-r0drv.c \
131 initterm-r0drv.c \
132 memobj-r0drv.c \
133 powernotification-r0drv.c
134
135.PATH: ${.CURDIR}/r0drv/freebsd
136SRCS += \
137 assert-r0drv-freebsd.c \
138 alloc-r0drv-freebsd.c \
139 initterm-r0drv-freebsd.c \
140 memobj-r0drv-freebsd.c \
141 memuserkernel-r0drv-freebsd.c \
142 mp-r0drv-freebsd.c \
143 process-r0drv-freebsd.c \
144 semevent-r0drv-freebsd.c \
145 semeventmulti-r0drv-freebsd.c \
146 semfastmutex-r0drv-freebsd.c \
147 spinlock-r0drv-freebsd.c \
148 thread-r0drv-freebsd.c \
149 thread2-r0drv-freebsd.c \
150 time-r0drv-freebsd.c
151
152.PATH: ${.CURDIR}/r0drv/generic
153SRCS += \
154 semspinmutex-r0drv-generic.c \
155 mpnotification-r0drv-generic.c \
156 RTMpIsCpuWorkPending-r0drv-generic.c
157
158.PATH: ${.CURDIR}/VBox
159SRCS += \
160 log-vbox.c \
161 strformat-vbox.c
162
163.include <bsd.kmod.mk>
164
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette