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