VirtualBox

source: vbox/trunk/src/libs/kStuff/Makefile.kmk@ 64739

Last change on this file since 64739 was 62534, checked in by vboxsync, 8 years ago

(C) 2016

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 KB
Line 
1# $Id: Makefile.kmk 62534 2016-07-22 19:30:22Z vboxsync $
2## @file
3# Sub-Makefile for kStuff, for statically linking into VBoxRT.
4#
5
6#
7# Copyright (C) 2007-2016 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
18SUB_DEPTH = ../../..
19include $(KBUILD_PATH)/subheader.kmk
20
21#
22# The library for dynamic linking.
23#
24LIBRARIES += VBox-kStuff
25VBox-kStuff_TEMPLATE = VBoxR3RuntimeDll
26VBox-kStuff_DEFS = IN_RT_R3
27VBox-kStuff_DEFS.strict = K_STRICT KLDRMODMACHO_STRICT KLDRMODMACHO_STRICT2
28VBox-kStuff_DEFS.debug = $(VBox-kStuff_DEFS.strict)
29VBox-kStuff_INCS = \
30 kStuff/include \
31 $(VBox-kStuff_0_OUTDIR)
32VBox-kStuff_ORDERDEPS = \
33 $(VBox-kStuff_0_OUTDIR)/kErrNameConsts.h
34VBox-kStuff_SOURCES = \
35 kStuff/kLdr/kLdrMod.c \
36 kStuff/kLdr/kLdrModLX.c \
37 kStuff/kLdr/kLdrModMachO.c \
38 kStuff/kLdr/kLdrModPE.c \
39 \
40 kStuff/kRdr/kRdr.cpp \
41 kStuff/kRdr/kRdrBuffered.cpp \
42 \
43 kStuff/kCpu/kCpuCompare.c \
44 kStuff/kCpu/kCpuGetArchAndCpu.c \
45 \
46 kStuff/kErr/kErrName.c \
47 \
48 kStuff/kHlp/Generic/kHlpMemPComp.c \
49 kStuff/kHlp/Generic/kHlpMemICompAscii.c \
50 kStuff/kHlp/Generic/kHlpStrPCat.c \
51 kStuff/kHlp/Generic/kHlpStrNPCat.c \
52 kStuff/kHlp/Generic/kHlpStrPComp.c \
53 kStuff/kHlp/Generic/kHlpStrNPComp.c \
54 kStuff/kHlp/Generic/kHlpStrICompAscii.c \
55 kStuff/kHlp/Generic/kHlpStrIPCompAscii.c \
56 kStuff/kHlp/Generic/kHlpStrNICompAscii.c \
57 kStuff/kHlp/Generic/kHlpStrNIPCompAscii.c \
58 kStuff/kHlp/Generic/kHlpStrPCopy.c \
59 kStuff/kHlp/Generic/kHlpStrNLen.c \
60 kStuff/kHlp/Generic/kHlpInt2Ascii.c \
61 kStuff/kHlp/Generic/kHlpGetEnvUZ.c \
62 kStuff/kHlp/Generic/kHlpGetExt.c \
63 kStuff/kHlp/Generic/kHlpGetFilename.c \
64 kStuff/kHlp/Generic/kHlpIsFilenameOnly.c \
65 \
66 iprt/kHlpPage-iprt.cpp \
67 iprt/kHlpAlloc-iprt.cpp \
68 iprt/kHlpAssert-iprt.cpp \
69 iprt/kHlpEnv-iprt.cpp \
70 iprt/kHlpString-iprt.cpp \
71 iprt/kRdrFile-iprt.cpp
72
73ifdef VBOX_WITH_32_ON_64_MAIN_API # 32-bit edition.
74 LIBRARIES += VBox-kStuff-x86
75 VBox-kStuff-x86_TEMPLATE = VBoxR3Dll-x86
76 VBox-kStuff-x86_EXTENDS = VBox-kStuff
77endif
78
79#
80# The library for static linking.
81#
82LIBRARIES += VBox-kStuffStatic
83VBox-kStuffStatic_TEMPLATE = VBoxR3Static
84VBox-kStuffStatic_EXTENDS = VBox-kStuff
85
86
87LIBRARIES += VBox-kStuffStaticBldProg
88VBox-kStuffStaticBldProg_TEMPLATE = VBoxBldProg
89VBox-kStuffStaticBldProg_EXTENDS = VBox-kStuff
90
91
92#
93# Generate the error constants.
94#
95$$(VBox-kStuff_0_OUTDIR)/kErrNameConsts.h: \
96 $(PATH_SUB_CURRENT)/kStuff/include/k/kErrors.h \
97 $(MAKEFILE_CURRENT) \
98 | $$(dir $$@)
99 $(QUIET)$(RM) -f $@
100 $(QUIET)$(SED) \
101 -e '/^#define *\(K[A-Z_]*ERR_[^ ()]*\) .*$$/!d' \
102 -e 's/^#define *\(K[A-Z_]*ERR_[^ ()]*\) .*$$/ERR_CONST(\1)/' \
103 -e '/K[A-Z_]*ERR_[A-Z0-9_]*BASE/d' \
104 -e '/K[A-Z_]*ERR_[A-Z0-9_]*END/d' \
105 --output $@ \
106 $<
107
108include $(FILE_KBUILD_SUB_FOOTER)
109
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette