Last change
on this file was 106061, checked in by vboxsync, 2 months ago |
Copyright year updates by scm.
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
1.1 KB
|
Line | |
---|
1 | # $Id: Makefile 106061 2024-09-16 14:03:52Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Makefile for building the VirtualBox keyboard handler library.
|
---|
4 | #
|
---|
5 |
|
---|
6 | # Note that for reasons of convenience, VirtualBox builds this library
|
---|
7 | # from inside its own build system rather than using this file.
|
---|
8 |
|
---|
9 | #
|
---|
10 | # Copyright (C) 2007-2024 Oracle and/or its affiliates.
|
---|
11 | #
|
---|
12 | # This file is part of VirtualBox base platform packages, as
|
---|
13 | # available from https://www.virtualbox.org.
|
---|
14 | #
|
---|
15 | # This program is free software; you can redistribute it and/or
|
---|
16 | # modify it under the terms of the GNU General Public License
|
---|
17 | # as published by the Free Software Foundation, in version 3 of the
|
---|
18 | # License.
|
---|
19 | #
|
---|
20 | # This program is distributed in the hope that it will be useful, but
|
---|
21 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
22 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
23 | # General Public License for more details.
|
---|
24 | #
|
---|
25 | # You should have received a copy of the GNU General Public License
|
---|
26 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
27 | #
|
---|
28 | # SPDX-License-Identifier: GPL-3.0-only
|
---|
29 | #
|
---|
30 |
|
---|
31 | CFLAGS = -I. -fPIC
|
---|
32 |
|
---|
33 | VBoxKeyboard.so : keyboard.o
|
---|
34 | gcc -shared -o VBoxKeyboard.so keyboard.o -lX11
|
---|
Note:
See
TracBrowser
for help on using the repository browser.