Makefile.kmk revision 4896726d903f56fe43eb13e2ba27ae1d63b8c40e
2d0611ffc9f91c5fc2ddccb93f9a3d17791ae650takashi# $Id$
2d0611ffc9f91c5fc2ddccb93f9a3d17791ae650takashi## @file
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd# Makefile for VBoxFB.
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd#
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd
63f06dce77bb2d9b1c5aa5deeb47a1069987fd1end#
d3b8b4755ae1686d1ca2df398d022356d4068957gryzor# Copyright (C) 2006-2007 innotek GmbH
d3b8b4755ae1686d1ca2df398d022356d4068957gryzor#
d3b8b4755ae1686d1ca2df398d022356d4068957gryzor# This file is part of VirtualBox Open Source Edition (OSE), as
d3b8b4755ae1686d1ca2df398d022356d4068957gryzor# available from http://www.virtualbox.org. This file is free software;
a9d50067373f032c3c9678ad55de69bb3f9fcb70rbowen# you can redistribute it and/or modify it under the terms of the GNU
a9d50067373f032c3c9678ad55de69bb3f9fcb70rbowen# General Public License as published by the Free Software Foundation,
a9d50067373f032c3c9678ad55de69bb3f9fcb70rbowen# in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
a9d50067373f032c3c9678ad55de69bb3f9fcb70rbowen# distribution. VirtualBox OSE is distributed in the hope that it will
63f06dce77bb2d9b1c5aa5deeb47a1069987fd1end# be useful, but WITHOUT ANY WARRANTY of any kind.
63f06dce77bb2d9b1c5aa5deeb47a1069987fd1end#
63f06dce77bb2d9b1c5aa5deeb47a1069987fd1end# If you received this file as part of a commercial VirtualBox
d474d8ef01ec5c2a09341cd148851ed383c3287crbowen# distribution, then only the terms of your commercial VirtualBox
0d507cf3a73c7f2d97ed0fead6907ec99f0ac1e7nd# license agreement apply instead of the previous paragraph.
d474d8ef01ec5c2a09341cd148851ed383c3287crbowen#
d474d8ef01ec5c2a09341cd148851ed383c3287crbowen
DEPTH = ../../../..
include $(PATH_KBUILD)/header.kmk
PROGRAMS = VBoxFB
VBoxFB_SOURCES = \
VBoxFB.cpp \
Framebuffer.cpp \
Helper.cpp
VBoxFB_DEFS = IN_RING3 IN_RT_R3 _GNU_SOURCE
VBoxFB_INCS = \
/usr/include/directfb \
$(PATH_BIN)/sdk/include \
$(VBOX_XPCOM_INCS)
VBoxFB_LIBS = \
$(PATH_LIB)/VBoxCOM$(VBOX_SUFF_LIB) \
$(LIB_RUNTIME) \
xpcomglue \
nspr4 \
plc4 \
$(LIB_PTHREAD) \
rt \
directfb
VBoxFB_LIBPATH = \
$(LIBPATH_XPCOM)
VBoxFB_CXXFLAGS = \
-DNDEBUG -DTRIMMED -O -Wall -fno-rtti -fno-exceptions \
-Wno-non-virtual-dtor -Wno-long-long -fshort-wchar -pthread -pipe
include $(PATH_KBUILD)/footer.kmk