VirtualBox

source: vbox/trunk/src/VBox/Additions/freebsd/Makefile@ 93115

Last change on this file since 93115 was 93115, checked in by vboxsync, 3 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
Line 
1#
2# Makefile for the VirtualBox FreeBSD Guest Drivers.
3#
4
5#
6# Copyright (C) 2009-2022 Oracle Corporation
7#
8# This file is part of VirtualBox Open Source Edition (OSE), as
9# available from http://www.virtualbox.org. This file is free software;
10# you can redistribute it and/or modify it under the terms of the GNU
11# General Public License (GPL) as published by the Free Software
12# Foundation, in version 2 as it comes in the "COPYING" file of the
13# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15#
16
17KBUILD_VERBOSE =
18
19all:
20 @echo "=== Building 'vboxguest' module ==="
21 @$(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxguest
22 @if [ -f vboxguest/vboxguest.ko ]; then \
23 cp vboxguest/vboxguest.ko .; \
24 fi
25 @echo
26 @if [ -d vboxvfs ]; then \
27 echo "=== Building 'vboxvfs' module ==="; \
28 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxvfs; \
29 if [ -f vboxvfs/vboxvfs.ko ]; then \
30 cp vboxvfs/vboxvfs.ko .; \
31 fi; \
32 fi
33
34
35install:
36 @$(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxguest install
37 @if [ -d vboxvfs ]; then \
38 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxvfs install; \
39 fi
40
41clean:
42 @$(MAKE) -C vboxguest clean
43 @if [ -d vboxvfs ]; then \
44 $(MAKE) -C vboxvfs clean; \
45 fi
46 rm -f vboxguest.*o vboxvfs.*o
47
48load:
49 @/sbin/kldunload vboxvfs || true
50 @/sbin/kldunload vboxguest || true
51 @/sbin/kldload ./vboxguest.ko
52 @if [ -f vboxvfs.ko ]; then /sbin/kldload ./vboxvfs.ko; fi
Note: See TracBrowser for help on using the repository browser.

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