VirtualBox

source: vbox/trunk/src/libs/Makefile.kmk@ 35273

Last change on this file since 35273 was 34675, checked in by vboxsync, 14 years ago

skip kStuff when building the extpacks

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.4 KB
Line 
1# $Id: Makefile.kmk 34675 2010-12-03 00:58:44Z vboxsync $
2## @file
3# Top-level makefile for the external libraries.
4#
5
6#
7# Copyright (C) 2006-2010 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# Note! A number of the libs may be detected on the host system by the configure script.
23# The usual way for testing for this is to see whether the Config.kmk default
24# include path specific to the lib has been changed.
25#
26
27# Compression libs used by IPRT and <what was it again?>.
28include $(PATH_SUB_CURRENT)/liblzf-3.4/Makefile.kmk
29if !defined(VBOX_ONLY_SDK) && !defined(VBOX_ONLY_TESTSUITE) \
30 && "$(SDK_VBOX_ZLIB_INCS)" == "$(PATH_ROOT)/src/libs/zlib-1.2.1"
31 include $(PATH_SUB_CURRENT)/zlib-1.2.1/Makefile.kmk
32endif
33
34# PNG support (for screenshots).
35if !defined(VBOX_ONLY_DOCS) && !defined(VBOX_ONLY_SDK) && !defined(VBOX_ONLY_TESTSUITE) \
36 && "$(SDK_VBOX_LIBPNG_INCS)" == "$(PATH_ROOT)/src/libs/libpng-1.2.8"
37 include $(PATH_SUB_CURRENT)/libpng-1.2.8/Makefile.kmk
38endif # !VBOX_ONLY_DOCS
39
40# Libcurl for inet access
41if defined(VBOX_WITH_LIBCURL) && !defined(VBOX_ONLY_EXTPACKS_USE_IMPLIBS) && !defined(VBOX_ONLY_SDK) && !defined(VBOX_ONLY_TESTSUITE) \
42 && "$(SDK_VBOX_LIBCURL_INCS)" == "$(PATH_ROOT)/src/libs/curl-7.19.4/include"
43 include $(PATH_SUB_CURRENT)/curl-7.19.4/Makefile.kmk
44endif
45
46# The kStuff lib used by IPRT and the debugger.
47if defined(IPRT_WITH_KSTUFF) && !defined(VBOX_ONLY_EXTPACKS_USE_IMPLIBS)
48 include $(PATH_SUB_CURRENT)/kStuff/Makefile.kmk
49endif
50
51# OpenSSL.
52if !defined(VBOX_ONLY_SDK) \
53 && "$(SDK_VBOX_OPENSSL_INCS)" == "$(SDK_VBOX_OPENSSL_VBOX_DEFAULT_INCS)"
54 include $(PATH_SUB_CURRENT)/openssl-0.9.8p/Makefile.kmk
55endif
56
57# libjpeg for VRDP video redirection
58if defined(VBOX_WITH_VRDP) && defined(VBOX_WITH_VRDP_VIDEO_CHANNEL)
59 include $(PATH_SUB_CURRENT)/jpeg-8a/Makefile.kmk
60endif
61
62# Main related things - XPCOM and XSLT.
63if defined(VBOX_WITH_MAIN) \
64 && !defined(VBOX_ONLY_EXTPACKS) \
65 && !defined(VBOX_ONLY_TESTSUITE)
66 if defined(VBOX_WITH_XPCOM) && !defined(VBOX_ONLY_DOCS)
67 include $(PATH_SUB_CURRENT)/xpcom18a4/Makefile.kmk
68 endif
69
70 ifeq ($(SDK_VBOX_LIBXSLT_INCS),$(PATH_ROOT)/src/libs/libxslt-1.1.22)
71 include $(PATH_SUB_CURRENT)/libxslt-1.1.22/Makefile.kmk
72 endif
73
74 # FFmpeg for test videos.
75 if defined(VBOX_WITH_FFMPEG) && !defined(VBOX_OSE) && !defined(VBOX_ONLY_DOCS) && !defined(VBOX_WITH_SDK)
76 if1of ($(KBUILD_TARGET), darwin linux solaris)
77 include $(PATH_SUB_CURRENT)/ffmpeg-20060710/Makefile.kmk
78 endif
79 endif
80endif
81
82if !defined(VBOX_ONLY_TESTSUITE) && !defined(VBOX_ONLY_EXTPACKS_USE_IMPLIBS)
83 ifeq ($(SDK_VBOX_LIBXML2_INCS),$(PATH_ROOT)/src/libs/libxml2-2.6.30/include)
84 include $(PATH_SUB_CURRENT)/libxml2-2.6.30/Makefile.kmk
85 endif
86endif
87
88if defined(VBOX_WITH_CROGL) && !defined(VBOX_OSE) \
89 && !defined(VBOX_ONLY_DOCS) \
90 && !defined(VBOX_ONLY_EXTPACKS) \
91 && !defined(VBOX_ONLY_TESTSUITE)
92 ifeq ($(KBUILD_TARGET),linux)
93 include $(PATH_SUB_CURRENT)/mesa-7.2/Makefile.kmk
94 endif
95endif
96
97include $(KBUILD_PATH)/subfooter.kmk
98
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use