7065N/A# $Id
7065N/A## @file
7065N/A# Makefile for building the VirtualBox keyboard handler library.
7065N/A#
7065N/A
7065N/A# Note that for reasons of convenience, VirtualBox builds this library
7065N/A# from inside its own build system rather than using this file.
7065N/A
7065N/A# Copyright (C) 2007-2010 Oracle Corporation
7065N/A#
7065N/A# This file is part of VirtualBox Open Source Edition (OSE), as
7065N/A# available from http://www.virtualbox.org. This file is free software;
7065N/A# you can redistribute it and/or modify it under the terms of the GNU
7065N/A# General Public License (GPL) as published by the Free Software
7065N/A# Foundation, in version 2 as it comes in the "COPYING" file of the
7065N/A# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
7065N/A# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
7065N/A#
7065N/A
7065N/ACFLAGS = -I. -fPIC
7065N/A
7065N/AVBoxKeyboard.so : keyboard.o
7065N/A gcc -shared -o VBoxKeyboard.so keyboard.o -lX11
7065N/A