1 |
|
---|
2 | # $Id: Makefile.kmk 41477 2012-05-29 11:43:27Z vboxsync $
|
---|
3 | ## @file
|
---|
4 | # Sub-Makefile for the headless frontend.
|
---|
5 | #
|
---|
6 |
|
---|
7 | #
|
---|
8 | # Copyright (C) 2006-2012 Oracle Corporation
|
---|
9 | #
|
---|
10 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | # available from http://www.virtualbox.org. This file is free software;
|
---|
12 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | # General Public License (GPL) as published by the Free Software
|
---|
14 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | #
|
---|
18 |
|
---|
19 | SUB_DEPTH = ../../../..
|
---|
20 | include $(KBUILD_PATH)/subheader.kmk
|
---|
21 |
|
---|
22 |
|
---|
23 | #
|
---|
24 | # Targets.
|
---|
25 | #
|
---|
26 | ifdef VBOX_WITH_HARDENING
|
---|
27 | PROGRAMS += VBoxVMMPreloadHardened
|
---|
28 | DLLS += VBoxVMMPreload
|
---|
29 | else
|
---|
30 | PROGRAMS += VBoxVMMPreload
|
---|
31 | endif
|
---|
32 |
|
---|
33 |
|
---|
34 | #
|
---|
35 | # Hardened stub.
|
---|
36 | #
|
---|
37 | VBoxVMMPreloadHardened_TEMPLATE = VBOXR3HARDENEDEXE
|
---|
38 | VBoxVMMPreloadHardened_SOURCES = VBoxVMMPreloadHardened.cpp
|
---|
39 | VBoxVMMPreloadHardened_NAME = VBoxVMMPreload
|
---|
40 |
|
---|
41 |
|
---|
42 | #
|
---|
43 | # The real thing
|
---|
44 | #
|
---|
45 | VBoxVMMPreload_TEMPLATE := $(if $(VBOX_WITH_HARDENING),VBoxR3Dll,VBOXR3EXE)
|
---|
46 | VBoxVMMPreload_SOURCES = VBoxVMMPreload.cpp
|
---|
47 | VBoxVMMPreload_LIBS = $(LIB_RUNTIME)
|
---|
48 | ifdef VBOX_WITH_HARDENING
|
---|
49 | VBoxVMMPreload_LDFLAGS.darwin += -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxVMMPreload.dylib
|
---|
50 | endif
|
---|
51 |
|
---|
52 |
|
---|
53 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
54 |
|
---|