VirtualBox

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

Last change on this file since 23526 was 23526, checked in by vboxsync, 16 years ago

HostDrivers/FreeBSD: Use the same method to build the kernel drivers as Linux.

To build the kernel drivers go into out/freebsd.{amd64,x86}/{release,debug}/bin/src
after the build and execute make. make load will load the kernel drivers.
The old way is only used for syntax checking and the resulting modules may not even load anymore.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.3 KB
Line 
1# $Id: Makefile 23526 2009-10-03 17:55:49Z 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 freebsd/SUPDrv-freebsd.c \
44 SUPDrv.c \
45 alloc/heapsimple.c \
46 common/err/RTErrConvertFromErrno.c \
47 common/err/RTErrConvertToErrno.c \
48 common/log/log.c \
49 common/log/logellipsis.c \
50 common/log/logrel.c \
51 common/log/logrelellipsis.c \
52 common/log/logcom.c \
53 common/log/logformat.c \
54 common/misc/handletable.c \
55 common/misc/handletablectx.c \
56 common/misc/once.c \
57 common/misc/thread.c \
58 common/string/strformat.c \
59 common/string/strformatrt.c \
60 common/string/strformattype.c \
61 common/string/strprintf.c \
62 common/string/strtonum.c \
63 common/string/memchr.c \
64 common/string/string.c \
65 common/rand/rand.c \
66 common/rand/randadv.c \
67 common/rand/randparkmiller.c \
68 common/path/RTPathStripFilename.c \
69 common/checksum/crc32.c \
70 common/checksum/ipv4.c \
71 common/table/avlpv.c \
72 generic/uuid-generic.c \
73 generic/RTAssertShouldPanic-generic.c \
74 generic/RTLogWriteDebugger-generic.c \
75 generic/RTLogWriteStdOut-stub-generic.c \
76 generic/RTLogWriteStdErr-stub-generic.c \
77 generic/RTLogWriteUser-generic.c \
78 generic/RTRandAdvCreateSystemFaster-generic.c \
79 generic/RTRandAdvCreateSystemTruer-generic.c \
80 generic/RTTimerCreate-generic.c \
81 generic/timer-generic.c \
82 generic/mppresent-generic.c \
83 r0drv/alloc-r0drv.c \
84 r0drv/initterm-r0drv.c \
85 r0drv/powernotification-r0drv.c \
86 r0drv/freebsd/assert-r0drv-freebsd.c \
87 r0drv/freebsd/alloc-r0drv-freebsd.c \
88 r0drv/freebsd/initterm-r0drv-freebsd.c \
89 r0drv/freebsd/memobj-r0drv-freebsd.c \
90 r0drv/freebsd/memuserkernel-r0drv-freebsd.c \
91 r0drv/freebsd/mp-r0drv-freebsd.c \
92 r0drv/freebsd/process-r0drv-freebsd.c \
93 r0drv/freebsd/semevent-r0drv-freebsd.c \
94 r0drv/freebsd/semeventmulti-r0drv-freebsd.c \
95 r0drv/freebsd/semfastmutex-r0drv-freebsd.c \
96 r0drv/freebsd/spinlock-r0drv-freebsd.c \
97 r0drv/freebsd/thread-r0drv-freebsd.c \
98 r0drv/freebsd/thread2-r0drv-freebsd.c \
99 r0drv/freebsd/time-r0drv-freebsd.c \
100 r0drv/generic/semspinmutex-r0drv-generic.c \
101 r0drv/generic/mpnotification-r0drv-generic.c \
102 r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.c \
103 r0drv/memobj-r0drv.c \
104 VBox/log-vbox.c \
105 VBox/strformat-vbox.c
106
107SRCS += device_if.h bus_if.h
108
109.include <bsd.kmod.mk>
110
111# HACK ALERT: The generated object files are not stored in the same directories as the
112# C files but in the current directory. Linking will fail because
113# it searches in the given directories for object files but doesn't
114# find them. Redefine the varaiable used for linking with the correct paths
115# to the files. KEEP IN SYNC WITH ABOVE DEFINITION!!!
116OBJS = \
117 SUPDrv-freebsd.o \
118 SUPDrv.o \
119 heapsimple.o \
120 RTErrConvertFromErrno.o \
121 RTErrConvertToErrno.o \
122 log.o \
123 logellipsis.o \
124 logrel.o \
125 logrelellipsis.o \
126 logcom.o \
127 logformat.o \
128 handletable.o \
129 handletablectx.o \
130 once.o \
131 thread.o \
132 strformat.o \
133 strformatrt.o \
134 strformattype.o \
135 strprintf.o \
136 strtonum.o \
137 memchr.o \
138 string.o \
139 rand.o \
140 randadv.o \
141 randparkmiller.o \
142 RTPathStripFilename.o \
143 crc32.o \
144 ipv4.o \
145 avlpv.o \
146 uuid-generic.o \
147 RTAssertShouldPanic-generic.o \
148 RTLogWriteDebugger-generic.o \
149 RTLogWriteStdOut-stub-generic.o \
150 RTLogWriteStdErr-stub-generic.o \
151 RTLogWriteUser-generic.o \
152 RTRandAdvCreateSystemFaster-generic.o \
153 RTRandAdvCreateSystemTruer-generic.o \
154 RTTimerCreate-generic.o \
155 timer-generic.o \
156 mppresent-generic.o \
157 alloc-r0drv.o \
158 initterm-r0drv.o \
159 powernotification-r0drv.o \
160 assert-r0drv-freebsd.o \
161 alloc-r0drv-freebsd.o \
162 initterm-r0drv-freebsd.o \
163 memobj-r0drv-freebsd.o \
164 memuserkernel-r0drv-freebsd.o \
165 mp-r0drv-freebsd.o \
166 process-r0drv-freebsd.o \
167 semevent-r0drv-freebsd.o \
168 semeventmulti-r0drv-freebsd.o \
169 semfastmutex-r0drv-freebsd.o \
170 spinlock-r0drv-freebsd.o \
171 thread-r0drv-freebsd.o \
172 thread2-r0drv-freebsd.o \
173 time-r0drv-freebsd.o \
174 semspinmutex-r0drv-generic.o \
175 mpnotification-r0drv-generic.o \
176 RTMpIsCpuWorkPending-r0drv-generic.o \
177 memobj-r0drv.o \
178 log-vbox.o \
179 strformat-vbox.o
180
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