Makefile revision fe0826de96da565f5a285504b2210f269b8a2de9
2N/A#
2N/A# Makefile for the VirtualBox Linux Host Drivers.
2N/A#
2N/A
2N/A#
2N/A#
2N/A# Copyright (C) 2008-2009 Sun Microsystems, Inc.
2N/A#
2N/A# This file is part of VirtualBox Open Source Edition (OSE), as
2N/A# available from http://www.virtualbox.org. This file is free software;
2N/A# you can redistribute it and/or modify it under the terms of the GNU
2N/A# General Public License (GPL) as published by the Free Software
2N/A# Foundation, in version 2 as it comes in the "COPYING" file of the
2N/A# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
2N/A# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
2N/A#
2N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
2N/A# Clara, CA 95054 USA or visit http://www.sun.com if you need
2N/A# additional information or have any questions.
2N/A#
2N/A
2N/AKBUILD_VERBOSE =
2N/A
2N/Aall:
2N/A @echo "*** Building 'vboxdrv' module ***"
2N/A @$(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxdrv
2N/A @cp vboxdrv/vboxdrv.ko .
2N/A @echo
2N/A @if [ -d vboxnetflt ]; then \
2N/A if [ -f vboxdrv/Module.symvers ]; then \
2N/A cp vboxdrv/Module.symvers vboxnetflt; \
2N/A fi; \
2N/A echo "*** Building 'vboxnetflt' module ***"; \
2N/A $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxnetflt; \
2N/A cp vboxnetflt/vboxnetflt.ko .; \
2N/A fi
2N/A
2N/A
install:
@$(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxdrv install
@if [ -d vboxnetflt ]; then \
$(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxnetflt install; \
fi
clean:
@$(MAKE) -C vboxdrv clean
@if [ -d vboxnetflt ]; then \
$(MAKE) -C vboxnetflt clean; \
fi
rm -f vboxdrv.ko vboxnetflt.ko
load:
@for module in vboxnetflt vboxdrv; do \
if grep "^$$module " /proc/modules >/dev/null; then \
echo "Removing previously installed $$module module"; \
/sbin/rmmod $$module; \
fi; \
done
@for module in vboxdrv vboxnetflt; do \
if test -f $$module.ko; then \
echo "Installing $$module module"; \
/sbin/insmod $$module.ko; \
fi; \
done