VirtualBox

source: vbox/trunk/src/Makefile.kmk@ 13762

Last change on this file since 13762 was 13230, checked in by vboxsync, 16 years ago

further new recompiler work

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.6 KB
Line 
1# $Id: Makefile.kmk 13230 2008-10-13 19:03:16Z vboxsync $
2## @file
3# Top-level makefile for the src directory.
4#
5
6#
7# Copyright (C) 2006-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
22ifdef VBOX_SINGLE_MAKEFILE
23SUB_DEPTH = ..
24include $(KBUILD_PATH)/subheader.kmk
25
26ifdef VBOX_ONLY_ADDITIONS
27 include $(PATH_SUB_CURRENT)/VBox/Makefile.kmk
28
29else if defined(VBOX_ONLY_DOCS) || defined(VBOX_ONLY_SDK)
30 include $(PATH_SUB_CURRENT)/bldprogs/Makefile.kmk
31 include $(PATH_SUB_CURRENT)/VBox/Makefile.kmk
32 include $(PATH_SUB_CURRENT)/libs/Makefile.kmk
33
34else # !VBOX_ONLY_ADDITIONS && !VBOX_ONLY_DOCS && !VBOX_ONLY_SDK
35 include $(PATH_SUB_CURRENT)/bldprogs/Makefile.kmk
36 include $(PATH_SUB_CURRENT)/VBox/Makefile.kmk
37 include $(PATH_SUB_CURRENT)/libs/Makefile.kmk
38 ifdef VBOX_WITH_NEW_RECOMPILER
39 include $(PATH_SUB_CURRENT)/recompiler_new/Makefile.kmk
40 else
41 include $(PATH_SUB_CURRENT)/recompiler/Makefile.kmk
42 endif
43 ifneq ($(wildcard $(PATH_SUB_CURRENT)/apps),)
44 include $(PATH_SUB_CURRENT)/apps/Makefile.kmk
45 endif
46 ifdef VBOX_WITH_TESTSUITE
47 include $(PATH_SUB_CURRENT)/tests/Makefile.kmk
48 endif
49 ifdef VBOX_WITH_TESTCASES
50 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
51 endif
52endif # !VBOX_ONLY_ADDITIONS && !VBOX_ONLY_DOCS && !VBOX_ONLY_SDK
53
54include $(KBUILD_PATH)/subfooter.kmk
55
56
57else # !VBOX_SINGLE_MAKEFILE
58DEPTH = ..
59include $(KBUILD_PATH)/header.kmk
60
61ifdef VBOX_ONLY_ADDITIONS
62 SUBDIRS = VBox
63
64else ifdef VBOX_ONLY_DOCS
65 SUBDIRS = VBox/Runtime bldprogs libs VBox
66
67else ifdef VBOX_ONLY_SDK
68 SUBDIRS = bldprogs libs VBox
69
70else # !VBOX_ONLY_ADDITIONS
71 # Build IPRT first because xpcom (IPC, nspr, python) depends on it.
72 SUBDIRS = VBox/Runtime bldprogs libs VBox
73
74 ifdef VBOX_WITH_NEW_RECOMPILER
75 SUBDIRS += recompiler_new
76 else
77 SUBDIRS += recompiler
78 endif
79 ifneq ($(wildcard apps),)
80 SUBDIRS += apps
81 endif
82 ifdef VBOX_WITH_TESTSUITE
83 SUBDIRS += tests
84 endif
85 ifdef VBOX_WITH_TESTCASES
86 SUBDIRS += testcase
87 endif
88endif # !VBOX_ONLY_ADDITIONS
89
90include $(KBUILD_PATH)/footer.kmk
91
92endif # !VBOX_SINGLE_MAKEFILE
93
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use