1 | # $Id: Makefile.kmk 12196 2008-09-08 02:23:00Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for kStuff, for statically linking into VBoxRT.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2007 Sun Microsystems, Inc.
|
---|
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 | # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
18 | # Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
19 | # additional information or have any questions.
|
---|
20 | #
|
---|
21 |
|
---|
22 | SUB_DEPTH = ../../..
|
---|
23 | include $(KBUILD_PATH)/subheader.kmk
|
---|
24 |
|
---|
25 | #
|
---|
26 | # The library.
|
---|
27 | #
|
---|
28 | LIBRARIES += VBox-kStuff
|
---|
29 | VBox-kStuff_TEMPLATE = VBOXR3
|
---|
30 | VBox-kStuff_DEFS = IN_RT_R3
|
---|
31 | VBox-kStuff_INCS = kStuff/include
|
---|
32 | VBox-kStuff_SOURCES = \
|
---|
33 | kStuff/kLdr/kLdrMod.c \
|
---|
34 | kStuff/kLdr/kLdrModLX.c \
|
---|
35 | kStuff/kLdr/kLdrModMachO.c \
|
---|
36 | kStuff/kLdr/kLdrModPE.c \
|
---|
37 | \
|
---|
38 | kStuff/kRdr/kRdr.cpp \
|
---|
39 | kStuff/kRdr/kRdrBuffered.cpp \
|
---|
40 | \
|
---|
41 | kStuff/kCpu/kCpuCompare.c \
|
---|
42 | kStuff/kCpu/kCpuGetArchAndCpu.c \
|
---|
43 | \
|
---|
44 | \
|
---|
45 | kStuff/kHlp/Generic/kHlpMemPComp.c \
|
---|
46 | kStuff/kHlp/Generic/kHlpMemICompAscii.c \
|
---|
47 | kStuff/kHlp/Generic/kHlpStrPCat.c \
|
---|
48 | kStuff/kHlp/Generic/kHlpStrNPCat.c \
|
---|
49 | kStuff/kHlp/Generic/kHlpStrPComp.c \
|
---|
50 | kStuff/kHlp/Generic/kHlpStrNPComp.c \
|
---|
51 | kStuff/kHlp/Generic/kHlpStrICompAscii.c \
|
---|
52 | kStuff/kHlp/Generic/kHlpStrIPCompAscii.c \
|
---|
53 | kStuff/kHlp/Generic/kHlpStrNICompAscii.c \
|
---|
54 | kStuff/kHlp/Generic/kHlpStrNIPCompAscii.c \
|
---|
55 | kStuff/kHlp/Generic/kHlpStrPCopy.c \
|
---|
56 | kStuff/kHlp/Generic/kHlpStrNLen.c \
|
---|
57 | kStuff/kHlp/Generic/kHlpInt2Ascii.c \
|
---|
58 | kStuff/kHlp/Generic/kHlpGetEnvUZ.c \
|
---|
59 | kStuff/kHlp/Generic/kHlpGetExt.c \
|
---|
60 | kStuff/kHlp/Generic/kHlpGetFilename.c \
|
---|
61 | kStuff/kHlp/Generic/kHlpIsFilenameOnly.c \
|
---|
62 | \
|
---|
63 | iprt/kHlpPage-iprt.cpp \
|
---|
64 | iprt/kHlpAlloc-iprt.cpp \
|
---|
65 | iprt/kHlpEnv-iprt.cpp \
|
---|
66 | iprt/kHlpString-iprt.cpp \
|
---|
67 | iprt/kRdrFile-iprt.cpp
|
---|
68 |
|
---|
69 | # kStuff/kErr/kErrName.c
|
---|
70 |
|
---|
71 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
72 |
|
---|