1 | # $Id: Makefile.kmk 33590 2010-10-29 08:55:09Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the headless frontend.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2007 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 | SUB_DEPTH = ../../../..
|
---|
19 | include $(KBUILD_PATH)/subheader.kmk
|
---|
20 |
|
---|
21 | include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
|
---|
22 | ifdef VBOX_WITH_FFMPEG
|
---|
23 | include $(PATH_SUB_CURRENT)/VideoCapture/Makefile.kmk
|
---|
24 | endif
|
---|
25 |
|
---|
26 | #
|
---|
27 | # Targets.
|
---|
28 | #
|
---|
29 | ifdef VBOX_WITH_HARDENING
|
---|
30 | PROGRAMS += VBoxHeadlessHardened
|
---|
31 | DLLS += VBoxHeadless
|
---|
32 | else
|
---|
33 | PROGRAMS += VBoxHeadless
|
---|
34 | endif
|
---|
35 |
|
---|
36 |
|
---|
37 | #
|
---|
38 | # Hardened VBoxHeadless.
|
---|
39 | #
|
---|
40 | VBoxHeadlessHardened_TEMPLATE = VBOXR3HARDENEDEXE
|
---|
41 | VBoxHeadlessHardened_SOURCES = VBoxHeadlessHardened.cpp
|
---|
42 | VBoxHeadlessHardened_NAME = VBoxHeadless
|
---|
43 |
|
---|
44 |
|
---|
45 | #
|
---|
46 | # VBoxHeadless
|
---|
47 | #
|
---|
48 | VBoxHeadless_TEMPLATE := $(if $(VBOX_WITH_HARDENING),VBOXMAINCLIENTDLL,VBOXMAINCLIENTEXE)
|
---|
49 | VBoxHeadless_DEFS = VBOX_FFMPEG
|
---|
50 | VBoxHeadless_SOURCES = VBoxHeadless.cpp
|
---|
51 | VBoxHeadless_SOURCES += Framebuffer.cpp
|
---|
52 | ifdef VBOX_WITH_GUEST_PROPS
|
---|
53 | VBoxHeadless_DEFS += VBOX_WITH_GUEST_PROPS
|
---|
54 | endif
|
---|
55 | ifdef VBOX_WITH_HARDENING
|
---|
56 | VBoxHeadless_LDFLAGS.darwin += -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxHeadless.dylib
|
---|
57 | endif
|
---|
58 | ifdef VBOX_WITH_VNC # (GPL only)
|
---|
59 | VBoxHeadless_DEFS += VBOX_WITH_VNC
|
---|
60 | VBoxHeadless_SOURCES += FramebufferVNC.cpp
|
---|
61 | VBoxHeadless_LIBS += vncserver
|
---|
62 | endif
|
---|
63 |
|
---|
64 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
65 |
|
---|