1 | # $Id: makefile.tstVBoxAPIXPCOM 98103 2023-01-17 14:15:46Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # tstVBoxAPIXPCOM makefile
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2023 Oracle and/or its affiliates.
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox base platform packages, as
|
---|
10 | # available from https://www.virtualbox.org.
|
---|
11 | #
|
---|
12 | # This program is free software; you can redistribute it and/or
|
---|
13 | # modify it under the terms of the GNU General Public License
|
---|
14 | # as published by the Free Software Foundation, in version 3 of the
|
---|
15 | # License.
|
---|
16 | #
|
---|
17 | # This program is distributed in the hope that it will be useful, but
|
---|
18 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | # General Public License for more details.
|
---|
21 | #
|
---|
22 | # You should have received a copy of the GNU General Public License
|
---|
23 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | #
|
---|
25 | # SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | #
|
---|
27 |
|
---|
28 | PATH_XPCOM = ..
|
---|
29 | PATH_BIN = ../../../../
|
---|
30 |
|
---|
31 | # This setting must be the same as used when building VBoxXPCOM.so.
|
---|
32 | # If you get a lot of unresolved symbols, try commenting it out.
|
---|
33 | VBOX_WITH_XPCOM_NAMESPACE_CLEANUP=1
|
---|
34 |
|
---|
35 | PATH_XPCOM_IDL = $(PATH_XPCOM)/idl
|
---|
36 | INCS_XPCOM = $(PATH_XPCOM)/include \
|
---|
37 | $(PATH_XPCOM)/include/nsprpub \
|
---|
38 | $(PATH_XPCOM)/include/string \
|
---|
39 | $(PATH_XPCOM)/include/xpcom \
|
---|
40 | $(PATH_XPCOM)/include/ipcd
|
---|
41 |
|
---|
42 | ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
|
---|
43 | DEFS_XPCOM += VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
|
---|
44 | endif
|
---|
45 |
|
---|
46 | # Adjust this to match your platform, pick from RT_OS_LINUX, RT_OS_WINDOWS,
|
---|
47 | # RT_OS_DARWIN, RT_OS_SOLARIS...
|
---|
48 | DEFS_XPCOM += RT_OS_LINUX
|
---|
49 |
|
---|
50 |
|
---|
51 | #
|
---|
52 | # Link with the public XPCOM libraries
|
---|
53 | #
|
---|
54 | tstVBoxAPIXPCOM: tstVBoxAPIXPCOM.o
|
---|
55 | g++ -g -o $@ $^ \
|
---|
56 | $(PATH_BIN)/VBoxXPCOM.so \
|
---|
57 | -Wl,-rpath $(PATH_BIN)/ \
|
---|
58 | -ldl -lpthread
|
---|
59 |
|
---|
60 | tstVBoxAPIXPCOM.o: tstVBoxAPIXPCOM.cpp
|
---|
61 | g++ -c -g -fshort-wchar $(addprefix -I, $(INCS_XPCOM)) $(addprefix -D, $(DEFS_XPCOM)) -o $@ tstVBoxAPIXPCOM.cpp
|
---|
62 |
|
---|
63 | clean:
|
---|
64 | rm -f tstVBoxAPIXPCOM tstVBoxAPIXPCOM.o
|
---|
65 |
|
---|