1 | # $Id: Makefile.kmk 69111 2017-10-17 14:26:02Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the VBox RDP authentication plugins.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2017 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 | # The plugin.
|
---|
22 | ifndef VBOX_ONLY_SDK
|
---|
23 | if ("$(KBUILD_TARGET)" != "linux" && "$(KBUILD_TARGET)" != "solaris") || defined(VBOX_WITH_PAM)
|
---|
24 | DLLS += VBoxAuth
|
---|
25 | endif
|
---|
26 | endif
|
---|
27 | VBoxAuth_TEMPLATE = VBOXR3
|
---|
28 | VBoxAuth_SOURCES.linux = pam/VBoxAuthPAM.c
|
---|
29 | VBoxAuth_SOURCES.solaris = pam/VBoxAuthPAM.c
|
---|
30 | VBoxAuth_SOURCES.freebsd = pam/VBoxAuthPAM.c
|
---|
31 | VBoxAuth_SOURCES.win = winlogon/winlogon.cpp winlogon/VBoxAuth.rc
|
---|
32 | VBoxAuth_SOURCES.darwin = directoryservice/directoryservice.cpp
|
---|
33 | VBoxAuth_CXXFLAGS.darwin = -Wno-deprecated-declarations
|
---|
34 | VBoxAuth_LIBS.linux = $(LIB_RUNTIME) dl
|
---|
35 | VBoxAuth_LIBS.solaris = $(LIB_RUNTIME) dl
|
---|
36 | VBoxAuth_LIBS.freebsd = $(LIB_RUNTIME)
|
---|
37 | VBoxAuth_LIBS.darwin = $(LIB_RUNTIME)
|
---|
38 | VBoxAuth_LDFLAGS.darwin = -framework DirectoryService
|
---|
39 |
|
---|
40 | # The simple plugin.
|
---|
41 | ifndef VBOX_ONLY_SDK
|
---|
42 | if defined(VBOX_WITH_MAIN)
|
---|
43 | DLLS += VBoxAuthSimple
|
---|
44 | endif
|
---|
45 | endif
|
---|
46 | VBoxAuthSimple_TEMPLATE = VBOXMAINCLIENTDLL
|
---|
47 | VBoxAuthSimple_SOURCES = simple/VBoxAuthSimple.cpp
|
---|
48 | VBoxAuthSimple_SOURCES.win = simple/VBoxAuthSimple.rc
|
---|
49 |
|
---|
50 | # Install the SDK samples.
|
---|
51 | INSTALLS += VBoxAuth-samples
|
---|
52 | VBoxAuth-samples_INST = $(INST_SDK)bindings/auth/
|
---|
53 | VBoxAuth-samples_MODE = a+r,u+w
|
---|
54 | VBoxAuth-samples_SOURCES = simple/VBoxAuthSimple.cpp
|
---|
55 | VBoxAuth-samples_SOURCES.linux = pam/VBoxAuthPAM.c
|
---|
56 | VBoxAuth-samples_SOURCES.win = winlogon/winlogon.cpp
|
---|
57 |
|
---|
58 | # Install the SDK header.
|
---|
59 | INSTALLS += VBoxAuth-sdkhdr
|
---|
60 | VBoxAuth-sdkhdr_INST = $(INST_SDK)bindings/auth/include/
|
---|
61 | VBoxAuth-sdkhdr_MODE = a+r,u+w
|
---|
62 | VBoxAuth-sdkhdr_SOURCES = $(PATH_ROOT)/include/VBox/VBoxAuth.h=>VBoxAuth.h
|
---|
63 |
|
---|
64 |
|
---|
65 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
66 |
|
---|