1 | # $Id: Makefile.kmk 8155 2008-04-18 15:16:47Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Makefile for the Cross Platform Guest Additions Driver.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2007 Sun Microsystems, Inc.
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 | # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
18 | # Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
19 | # additional information or have any questions.
|
---|
20 | #
|
---|
21 |
|
---|
22 | DEPTH ?= ../../../../..
|
---|
23 | SUB_DEPTH = ../..
|
---|
24 | include $(PATH_KBUILD)/subheader.kmk
|
---|
25 |
|
---|
26 | # PORTME: OSes using mixed case driver names join OS/2, the others join Solaris below.
|
---|
27 |
|
---|
28 | if1of ($(BUILD_TARGET), os2)
|
---|
29 | #
|
---|
30 | # VBoxGuest - The Guest Additions Driver (mixed case).
|
---|
31 | #
|
---|
32 | ifdef VBOX_WITH_OS2_ADDITIONS
|
---|
33 | SYSMODS.os2 += VBoxGuest
|
---|
34 | LIBRARIES += VBoxGuestLibOs2Hack
|
---|
35 | endif
|
---|
36 | VBoxGuest_TEMPLATE = VBOXGUESTR0
|
---|
37 | VBoxGuest_DEFS = VBGL_VBOXGUEST VBOX_HGCM
|
---|
38 | VBoxGuest_INCS := $(PATH_SUB_CURRENT)
|
---|
39 | ifneq ($(BUILD_TARGET),os2)
|
---|
40 | VBoxGuest_SOURCES = \
|
---|
41 | VBoxGuest-$(BUILD_TARGET).cpp \
|
---|
42 | VBoxGuest.cpp
|
---|
43 | VBoxGuest_LIBS = \
|
---|
44 | $(VBOX_LIB_VBGL_R0BASE) \
|
---|
45 | $(VBOX_LIB_IPRT_GUEST_R0)
|
---|
46 | else # OS/2:
|
---|
47 | # The library order is crusial, so a bit of trickery is necessary.
|
---|
48 | # A library is used to make sure that VBoxGuestA-os2.asm is first in the link. (temporary hack?)
|
---|
49 | VBoxGuest_SOURCES = \
|
---|
50 | VBoxGuestA-os2.asm \
|
---|
51 | VBoxGuest-os2.def
|
---|
52 | #VBoxGuest_LDFLAGS = -s -t -v
|
---|
53 | VBoxGuest_LIBS = \
|
---|
54 | $(TARGET_VBoxGuestLibOs2Hack) \
|
---|
55 | $(VBOX_LIB_VBGL_R0BASE) \
|
---|
56 | $(VBOX_LIB_IPRT_GUEST_R0) \
|
---|
57 | $(VBOX_GCC_LIBGCC) \
|
---|
58 | end
|
---|
59 | ## When debugging init with kDrvTest:
|
---|
60 | #VBoxGuest_NAME = VBoxGst
|
---|
61 |
|
---|
62 | VBoxGuestLibOs2Hack_TEMPLATE = VBOXGUESTR0LIB
|
---|
63 | VBoxGuestLibOs2Hack_NOINST = 1
|
---|
64 | VBoxGuestLibOs2Hack_DEFS = $(VBoxGuest_DEFS)
|
---|
65 | VBoxGuestLibOs2Hack_INCS := \
|
---|
66 | $(PATH_SUB_CURRENT) \
|
---|
67 | $(PATH_TARGET) \
|
---|
68 | $(PATH_ROOT)/src/VBox/Runtime/include # for the os2ddk
|
---|
69 | VBoxGuestLibOs2Hack_SOURCES = \
|
---|
70 | VBoxGuest-os2.cpp \
|
---|
71 | VBoxGuest.cpp
|
---|
72 | endif # OS/2
|
---|
73 |
|
---|
74 | else if1of ($(BUILD_TARGET), freebsd solaris)
|
---|
75 | #
|
---|
76 | # vboxguest - The Guest Additions Driver (lower cased).
|
---|
77 | #
|
---|
78 | SYSMODS.solaris += vboxguest
|
---|
79 | SYSMODS.freebsd += vboxguest
|
---|
80 | vboxguest_TEMPLATE = VBOXGUESTR0
|
---|
81 | vboxguest_DEFS = VBGL_VBOXGUEST VBOX_HGCM
|
---|
82 | vboxguest_INCS := \
|
---|
83 | $(PATH_SUB_CURRENT)
|
---|
84 | vboxguest_INCS.freebsd = \
|
---|
85 | $(PATH_TARGET)
|
---|
86 | vboxguest_SOURCES = \
|
---|
87 | VBoxGuest-$(BUILD_TARGET).c \
|
---|
88 | VBoxGuest.cpp
|
---|
89 | vboxguest_LIBS = \
|
---|
90 | $(VBOX_LIB_VBGL_R0BASE) \
|
---|
91 | $(VBOX_LIB_IPRT_GUEST_R0)
|
---|
92 | vboxguest_DEPS.freebsd = \
|
---|
93 | $(PATH_TARGET)/pci_if.h \
|
---|
94 | $(PATH_TARGET)/bus_if.h \
|
---|
95 | $(PATH_TARGET)/device_if.h
|
---|
96 | vboxguest_CLEAN.freebsd = $(vboxguest_DEPS.freebsd)
|
---|
97 |
|
---|
98 | #
|
---|
99 | # FreeBSD: Genereate bus, device and pci interface headers. (explain why)
|
---|
100 | #
|
---|
101 | # We cannot give a output path to the awk program, it will always generate
|
---|
102 | # the header next to the source. So, we'll have to temporarily copy the
|
---|
103 | # source file to the destination direction for it to work out correctly.
|
---|
104 | #
|
---|
105 | VBOX_AWK := /usr/bin/awk
|
---|
106 | $(PATH_TARGET)/bus_if.h: $(VBOX_FREEBSD_SRC)/kern/bus_if.m
|
---|
107 | $(call MSG_TOOL,awk,VBoxGuest,$<,$@)
|
---|
108 | $(QUIET)$(CP) -f $(VBOX_FREEBSD_SRC)/kern/bus_if.m $(PATH_TARGET)/bus_if.m
|
---|
109 | $(QUIET)$(VBOX_AWK) -f $(VBOX_FREEBSD_SRC)/tools/makeobjops.awk $(PATH_TARGET)/bus_if.m -h -p
|
---|
110 | $(QUIET)$(RM) $(PATH_TARGET)/bus_if.m
|
---|
111 |
|
---|
112 | $(PATH_TARGET)/device_if.h: $(VBOX_FREEBSD_SRC)/kern/device_if.m
|
---|
113 | $(call MSG_TOOL,awk,VBoxGuest,$<,$@)
|
---|
114 | $(QUIET)$(CP) -f $(VBOX_FREEBSD_SRC)/kern/device_if.m $(PATH_TARGET)/device_if.m
|
---|
115 | $(QUIET)$(VBOX_AWK) -f $(VBOX_FREEBSD_SRC)/tools/makeobjops.awk $(PATH_TARGET)/device_if.m -h -p
|
---|
116 | $(QUIET)$(RM) $(PATH_TARGET)/device_if.m
|
---|
117 |
|
---|
118 | $(PATH_TARGET)/pci_if.h: $(VBOX_FREEBSD_SRC)/dev/pci/pci_if.m
|
---|
119 | $(call MSG_TOOL,awk,VBoxGuest,$<,$@)
|
---|
120 | $(QUIET)$(CP) -f $(VBOX_FREEBSD_SRC)/dev/pci/pci_if.m $(PATH_TARGET)/pci_if.m
|
---|
121 | $(QUIET)$(VBOX_AWK) -f $(VBOX_FREEBSD_SRC)/tools/makeobjops.awk $(PATH_TARGET)/pci_if.m -h -p
|
---|
122 | $(QUIET)$(RM) $(PATH_TARGET)/pci_if.m
|
---|
123 |
|
---|
124 | endif
|
---|
125 |
|
---|
126 | include $(PATH_KBUILD)/subfooter.kmk
|
---|
127 |
|
---|