Makefile.kmk revision a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fc
70N/A# $Id$
70N/A## @file
70N/A# Makefile for VBoxFB.
70N/A#
70N/A
70N/A#
70N/A# Copyright (C) 2006-2007 innotek GmbH
70N/A#
70N/A# This file is part of VirtualBox Open Source Edition (OSE), as
70N/A# available from http://www.virtualbox.org. This file is free software;
70N/A# you can redistribute it and/or modify it under the terms of the GNU
70N/A# General Public License (GPL) as published by the Free Software
70N/A# Foundation, in version 2 as it comes in the "COPYING" file of the
70N/A# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
70N/A# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
70N/A#
70N/A
70N/ADEPTH = ../../../..
70N/Ainclude $(PATH_KBUILD)/header.kmk
70N/A
70N/APROGRAMS = VBoxFB
70N/A
70N/AVBoxFB_SOURCES = \
70N/A VBoxFB.cpp \
70N/A Framebuffer.cpp \
70N/A Helper.cpp
70N/AVBoxFB_DEFS = IN_RING3 IN_RT_R3 _GNU_SOURCE
70N/AVBoxFB_INCS = \
70N/A /usr/include/directfb \
70N/A $(PATH_BIN)/sdk/include \
70N/A $(VBOX_XPCOM_INCS)
70N/AVBoxFB_LIBS = \
70N/A $(PATH_LIB)/VBoxCOM$(VBOX_SUFF_LIB) \
70N/A $(LIB_RUNTIME) \
70N/A xpcomglue \
70N/A nspr4 \
70N/A plc4 \
70N/A $(LIB_PTHREAD) \
70N/A rt \
70N/A directfb
70N/AVBoxFB_LIBPATH = \
70N/A $(LIBPATH_XPCOM)
70N/AVBoxFB_CXXFLAGS = \
70N/A -DNDEBUG -DTRIMMED -O -Wall -fno-rtti -fno-exceptions \
70N/A -Wno-non-virtual-dtor -Wno-long-long -fshort-wchar -pthread -pipe
70N/A
70N/Ainclude $(PATH_KBUILD)/footer.kmk
70N/A
70N/A