| 1 |
# $Id$ |
|---|
| 2 |
## @file |
|---|
| 3 |
# Top-level makefile for the external libraries. |
|---|
| 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 |
|
|---|
| 22 |
SUB_DEPTH = ../.. |
|---|
| 23 |
include $(KBUILD_PATH)/subheader.kmk |
|---|
| 24 |
|
|---|
| 25 |
# |
|---|
| 26 |
# Note! A number of the libs may be detected on the host system by the configure script. |
|---|
| 27 |
# The usual way for testing for this is to see whether the Config.kmk default |
|---|
| 28 |
# include path specific to the lib has been changed. |
|---|
| 29 |
# |
|---|
| 30 |
|
|---|
| 31 |
# Compression libs used by IPRT and <what was it again?>. |
|---|
| 32 |
include $(PATH_SUB_CURRENT)/liblzf-1.51/Makefile.kmk |
|---|
| 33 |
if !defined(VBOX_ONLY_SDK) \ |
|---|
| 34 |
&& "$(SDK_VBOX_ZLIB_INCS)" == "$(PATH_ROOT)/src/libs/zlib-1.2.1" |
|---|
| 35 |
include $(PATH_SUB_CURRENT)/zlib-1.2.1/Makefile.kmk |
|---|
| 36 |
endif |
|---|
| 37 |
|
|---|
| 38 |
# PNG support (for screenshots). |
|---|
| 39 |
if !defined(VBOX_ONLY_DOCS) && !defined(VBOX_ONLY_SDK) \ |
|---|
| 40 |
&& "$(SDK_VBOX_LIBPNG_INCS)" == "$(PATH_ROOT)/src/libs/libpng-1.2.8" |
|---|
| 41 |
include $(PATH_SUB_CURRENT)/libpng-1.2.8/Makefile.kmk |
|---|
| 42 |
endif # !VBOX_ONLY_DOCS |
|---|
| 43 |
|
|---|
| 44 |
# The kStuff lib used by IPRT and the debugger. |
|---|
| 45 |
ifdef IPRT_WITH_KSTUFF |
|---|
| 46 |
include $(PATH_SUB_CURRENT)/kStuff/Makefile.kmk |
|---|
| 47 |
endif |
|---|
| 48 |
|
|---|
| 49 |
# OpenSSL for VRDP. |
|---|
| 50 |
if defined(VBOX_WITH_VRDP) && !defined(VBOX_ONLY_DOCS) && !defined(VBOX_ONLY_SDK) \ |
|---|
| 51 |
&& "$(SDK_VBOX_OPENSSL_INCS)" == "$(SDK_VBOX_OPENSSL_DEFAULT_INCS)" |
|---|
| 52 |
include $(PATH_SUB_CURRENT)/openssl-0.9.8h/Makefile.kmk |
|---|
| 53 |
endif |
|---|
| 54 |
|
|---|
| 55 |
|
|---|
| 56 |
# Main related things - XML and XSLT, XPCOM. |
|---|
| 57 |
if defined(VBOX_WITH_MAIN) && !defined(VBOX_ONLY_DOCS) |
|---|
| 58 |
|
|---|
| 59 |
ifdef VBOX_WITH_XPCOM |
|---|
| 60 |
include $(PATH_SUB_CURRENT)/xpcom18a4/Makefile.kmk |
|---|
| 61 |
endif |
|---|
| 62 |
ifeq ($(SDK_VBOX_LIBXML2_INCS),$(PATH_ROOT)/src/libs/libxml2-2.6.30/include) |
|---|
| 63 |
include $(PATH_SUB_CURRENT)/libxml2-2.6.30/Makefile.kmk |
|---|
| 64 |
endif |
|---|
| 65 |
ifeq ($(SDK_VBOX_LIBXSLT_INCS),$(PATH_ROOT)/src/libs/libxslt-1.1.22) |
|---|
| 66 |
include $(PATH_SUB_CURRENT)/libxslt-1.1.22/Makefile.kmk |
|---|
| 67 |
endif |
|---|
| 68 |
|
|---|
| 69 |
# FFmpeg for test videos. |
|---|
| 70 |
if defined(VBOX_WITH_FFMPEG) && !defined(VBOX_OSE) && !defined(VBOX_WITH_SDK) |
|---|
| 71 |
if1of ($(KBUILD_TARGET), darwin linux) |
|---|
| 72 |
include $(PATH_SUB_CURRENT)/ffmpeg-20060710/Makefile.kmk |
|---|
| 73 |
endif |
|---|
| 74 |
endif |
|---|
| 75 |
|
|---|
| 76 |
endif # VBOX_WITH_MAIN && !VBOX_ONLY_DOCS |
|---|
| 77 |
|
|---|
| 78 |
include $(KBUILD_PATH)/subfooter.kmk |
|---|
| 79 |
|
|---|