1 | # $Id: Makefile.kmk 28800 2010-04-27 08:22:32Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for kStuff, for statically linking into VBoxRT.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 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 | #
|
---|
22 | # The library.
|
---|
23 | #
|
---|
24 | LIBRARIES += VBox-kStuff
|
---|
25 | VBox-kStuff_TEMPLATE = VBOXR3
|
---|
26 | VBox-kStuff_DEFS = IN_RT_R3
|
---|
27 | VBox-kStuff_DEFS.strict = K_STRICT KLDRMODMACHO_STRICT KLDRMODMACHO_STRICT2
|
---|
28 | VBox-kStuff_DEFS.debug = $(VBox-kStuff_DEFS.strict)
|
---|
29 | VBox-kStuff_INCS = \
|
---|
30 | kStuff/include \
|
---|
31 | $(VBox-kStuff_0_OUTDIR)
|
---|
32 | VBox-kStuff_ORDERDEPS = \
|
---|
33 | $(VBox-kStuff_0_OUTDIR)/kErrNameConsts.h
|
---|
34 | VBox-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 |
|
---|
73 | # Generate the error constants.
|
---|
74 | $$(VBox-kStuff_0_OUTDIR)/kErrNameConsts.h: \
|
---|
75 | $(PATH_SUB_CURRENT)/kStuff/include/k/kErrors.h \
|
---|
76 | $(MAKEFILE_CURRENT) \
|
---|
77 | | $$(dir $$@)
|
---|
78 | $(QUIET)$(RM) -f $@
|
---|
79 | $(QUIET)$(SED) \
|
---|
80 | -e '/^#define *\(K[A-Z_]*ERR_[^ ()]*\) .*$$/!d' \
|
---|
81 | -e 's/^#define *\(K[A-Z_]*ERR_[^ ()]*\) .*$$/ERR_CONST(\1)/' \
|
---|
82 | -e '/K[A-Z_]*ERR_[A-Z0-9_]*BASE/d' \
|
---|
83 | -e '/K[A-Z_]*ERR_[A-Z0-9_]*END/d' \
|
---|
84 | --output $@ \
|
---|
85 | $<
|
---|
86 |
|
---|
87 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
88 |
|
---|