Makefile revision 677833bc953b6cb418c701facbdcf4aa18d6c44e
2873N/A#
2873N/A# Makefile for the src directory.
2873N/A#
2873N/A
2873N/A#
2873N/A# Copyright (C) 2006 InnoTek Systemberatung GmbH
2873N/A#
2873N/A# This file is part of VirtualBox Open Source Edition (OSE), as
2873N/A# available from http://www.virtualbox.org. This file is free software;
2873N/A# you can redistribute it and/or modify it under the terms of the GNU
2873N/A# General Public License as published by the Free Software Foundation,
2873N/A# in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
2873N/A# distribution. VirtualBox OSE is distributed in the hope that it will
2873N/A# be useful, but WITHOUT ANY WARRANTY of any kind.
2873N/A#
2873N/A# If you received this file as part of a commercial VirtualBox
2873N/A# distribution, then only the terms of your commercial VirtualBox
2873N/A# license agreement apply instead of the previous paragraph.
2873N/A#
2873N/A
2873N/ADEPTH = ..
2873N/Ainclude $(PATH_KBUILD)/header.kmk
6782N/A
2873N/A# build Runtime first when IPC logging is on because it depends on Runtime
2873N/Aifdef VBOX_IPC_RELEASE_LOG
2873N/A SUBDIRS = VBox/Runtime
2873N/Aelse ifneq ($(BUILD_TYPE),release)
6782N/A SUBDIRS = VBox/Runtime
2873N/Aelse
2873N/A SUBDIRS =
2873N/Aendif
6782N/A
2873N/ASUBDIRS += bldprogs libs VBox
2873N/Aifeq ($(BUILD_TARGET),darwin)
2873N/A SUBDIRS += recompiler/new
2873N/Aelse
6782N/A SUBDIRS += recompiler
2899N/Aendif
3817N/Aifneq ($(wildcard apps),)
3817N/A SUBDIRS += apps
3817N/Aendif
2873N/Aifdef VBOX_WITH_TESTSUITE
2873N/A SUBDIRS += tests
2873N/Aendif
2873N/A
2873N/Ainclude $(PATH_KBUILD)/footer.kmk
2873N/A
2873N/A