VirtualBox

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

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

HostDrivers/FreeBSD: remove the need to overwrite OBJS definition. Contributed by Alex Serbin

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.6 KB
Line 
1# $Id: Makefile 24886 2009-11-23 21:03:00Z 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 SUPDrvAgnostic.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 handletable.c \
76 handletablectx.c \
77 once.c \
78 thread.c
79
80.PATH: ${.CURDIR}/common/string
81SRCS += \
82 strformat.c \
83 strformatrt.c \
84 strformattype.c \
85 strprintf.c \
86 strtonum.c \
87 memchr.c \
88 string.c
89
90.PATH: ${.CURDIR}/common/rand
91SRCS += \
92 rand.c \
93 randadv.c \
94 randparkmiller.c
95
96.PATH: ${.CURDIR}/common/path
97SRCS += \
98 RTPathStripFilename.c
99
100.PATH: ${.CURDIR}/common/checksum
101SRCS += \
102 crc32.c \
103 ipv4.c
104
105.PATH: ${.CURDIR}/common/table
106SRCS += \
107 avlpv.c
108
109.PATH: ${.CURDIR}/generic
110SRCS += \
111 uuid-generic.c \
112 RTAssertShouldPanic-generic.c \
113 RTLogWriteDebugger-generic.c \
114 RTLogWriteStdOut-stub-generic.c \
115 RTLogWriteStdErr-stub-generic.c \
116 RTLogWriteUser-generic.c \
117 RTRandAdvCreateSystemFaster-generic.c \
118 RTRandAdvCreateSystemTruer-generic.c \
119 RTTimerCreate-generic.c \
120 timer-generic.c \
121 mppresent-generic.c
122
123.PATH: ${.CURDIR}/r0drv
124SRCS += \
125 alloc-r0drv.c \
126 initterm-r0drv.c \
127 memobj-r0drv.c \
128 powernotification-r0drv.c
129
130.PATH: ${.CURDIR}/r0drv/freebsd
131SRCS += \
132 assert-r0drv-freebsd.c \
133 alloc-r0drv-freebsd.c \
134 initterm-r0drv-freebsd.c \
135 memobj-r0drv-freebsd.c \
136 memuserkernel-r0drv-freebsd.c \
137 mp-r0drv-freebsd.c \
138 process-r0drv-freebsd.c \
139 semevent-r0drv-freebsd.c \
140 semeventmulti-r0drv-freebsd.c \
141 semfastmutex-r0drv-freebsd.c \
142 spinlock-r0drv-freebsd.c \
143 thread-r0drv-freebsd.c \
144 thread2-r0drv-freebsd.c \
145 time-r0drv-freebsd.c
146
147.PATH: ${.CURDIR}/r0drv/generic
148SRCS += \
149 semspinmutex-r0drv-generic.c \
150 mpnotification-r0drv-generic.c \
151 RTMpIsCpuWorkPending-r0drv-generic.c
152
153.PATH: ${.CURDIR}/VBox
154SRCS += \
155 log-vbox.c \
156 strformat-vbox.c
157
158.include <bsd.kmod.mk>
159
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