Makefile.kmk revision 4b9d6701570cb98fd36e209314239d104ec584d3
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# $Id$
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync## @file
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# Sub-Makefile for the vboxvideo DRM module (Solaris kernel OpenGL module).
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync#
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync#
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# Copyright (C) 2009 Oracle Corporation
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync#
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# This file is part of VirtualBox Open Source Edition (OSE), as
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# available from http://www.virtualbox.org. This file is free software;
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# you can redistribute it and/or modify it under the terms of the GNU
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# General Public License (GPL) as published by the Free Software
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# Foundation, in version 2 as it comes in the "COPYING" file of the
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync#
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# The contents of this file may alternatively be used under the terms
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# of the Common Development and Distribution License Version 1.0
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# VirtualBox OSE distribution, in which case the provisions of the
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# CDDL are applicable instead of those of the GPL.
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync#
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# You may elect to license modified versions of this file under the
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# terms and conditions of either the GPL or the CDDL or both.
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync#
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsyncSUB_DEPTH = ../../../../..
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsyncinclude $(KBUILD_PATH)/subheader.kmk
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsyncifneq ($(KBUILD_HOST),solaris)
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync$(error "The Solaris guest additions can only be built on Solaris!")
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsyncendif
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync#
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync# vboxvideo - The Video DRM (Direct Rendering Module) kernel module
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync#
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsyncSYSMODS.solaris += vboxvideo
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsyncvboxvideo_TEMPLATE = VBOXGUESTR0
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsyncvboxvideo_DEFS = VBOX_WITH_HGCM VBOX_SVN_REV=$(VBOX_SVN_REV)
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsyncvboxvideo_DEPS += $(VBOX_SVN_REV_KMK)
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsyncvboxvideo_INCS := \
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync include/
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsyncvboxvideo_SOURCES = \
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync vboxvideo_drm.c
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsyncvboxvideo_LIBS = \
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync $(VBOX_LIB_VBGL_R0) \
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync $(VBOX_LIB_IPRT_GUEST_R0)
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsyncvboxvideo_LDFLAGS += -N misc/drm
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsyncinclude $(KBUILD_PATH)/subfooter.kmk
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync
7847c123aebebc6d3d5c1406619cfba1ab6457c1vboxsync