VirtualBox

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

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

VBOX_SINGLE_MAKEFILE.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.2 KB
Line 
1# $Id: Makefile.kmk 10197 2008-07-04 04:41:21Z vboxsync $
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
22ifdef VBOX_SINGLE_MAKEFILE
23SUB_DEPTH = ../..
24include $(KBUILD_PATH)/subheader.kmk
25
26#
27# Note! A number of the libs may be detected on the host system by the configure script.
28# The usual way for testing for this is to see whether the Config.kmk default
29# include path specific to the lib has been changed.
30#
31
32# Compression libs used by IPRT and <what was it again?>.
33include $(PATH_SUB_CURRENT)/liblzf-1.51/Makefile.kmk
34ifeq ($(SDK_VBOX_ZLIB_INCS),$(PATH_ROOT)/src/libs/zlib-1.2.1)
35 include $(PATH_SUB_CURRENT)/zlib-1.2.1/Makefile.kmk
36endif
37
38# PNG support (for screenshots).
39ifeq ($(SDK_VBOX_LIBPNG_INCS),$(PATH_ROOT)/src/libs/libpng-1.2.8)
40 include $(PATH_SUB_CURRENT)/libpng-1.2.8/Makefile.kmk
41endif
42
43# The kStuff lib used by IPRT and the debugger.
44ifdef IPRT_WITH_KSTUFF
45 include $(PATH_SUB_CURRENT)/kStuff/Makefile.kmk
46endif
47
48# OpenSSL for VRDP.
49ifdef VBOX_WITH_VRDP
50 ifeq ($(SDK_VBOX_OPENSSL_INCS),$(SDK_VBOX_OPENSSL_DEFAULT_INCS))
51 include $(PATH_SUB_CURRENT)/openssl-0.9.8h/Makefile.kmk
52 endif
53endif # VBOX_WITH_VRDP
54
55# Main related things - XML and XSLT, XPCOM.
56ifdef VBOX_WITH_MAIN
57 ifdef VBOX_WITH_XPCOM
58 include $(PATH_SUB_CURRENT)/xpcom18a4/Makefile.kmk
59 endif
60 ifeq ($(SDK_VBOX_LIBXML2_INCS),$(PATH_ROOT)/src/libs/libxml2-2.6.30/include)
61 include $(PATH_SUB_CURRENT)/libxml2-2.6.30/Makefile.kmk
62 endif
63 ifeq ($(SDK_VBOX_LIBXSLT_INCS),$(PATH_ROOT)/src/libs/libxslt-1.1.22)
64 include $(PATH_SUB_CURRENT)/libxslt-1.1.22/Makefile.kmk
65 endif
66
67 # FFmpeg for test videos.
68 ifdef VBOX_WITH_FFMPEG
69 if1of ($(KBUILD_TARGET), darwin)
70 include $(PATH_SUB_CURRENT)/ffmpeg-20060710/Makefile.kmk
71 endif
72 endif
73endif
74
75include $(KBUILD_PATH)/subfooter.kmk
76
77
78else # !VBOX_SINGLE_MAKEFILE
79DEPTH = ../..
80include $(KBUILD_PATH)/header.kmk
81
82
83subdirs := liblzf-1.51 $(subdirs.$(KBUILD_TARGET))
84ifdef IPRT_WITH_KSTUFF
85 subdirs += kStuff
86endif
87# @todo win and os2 need that even in OSE, all others should set proper *_INCS
88# values by the configure script
89#ifndef VBOX_OSE
90 ifeq ($(SDK_VBOX_ZLIB_INCS),$(PATH_ROOT)/src/libs/zlib-1.2.1)
91 subdirs += zlib-1.2.1
92 endif
93 ifeq ($(SDK_VBOX_LIBPNG_INCS),$(PATH_ROOT)/src/libs/libpng-1.2.8)
94 subdirs += libpng-1.2.8
95 endif
96#endif # !VBOX_OSE
97ifdef VBOX_WITH_VRDP
98 if1of ($(KBUILD_TARGET), darwin linux solaris win)
99 ifeq ($(SDK_VBOX_OPENSSL_INCS),$(SDK_VBOX_OPENSSL_DEFAULT_INCS))
100 subdirs += openssl-0.9.8h
101 endif
102 else
103 ifeq ($(SDK_VBOX_OPENSSL_INCS),$(PATH_ROOT)/src/libs/openssl-0.9.7e/include)
104 subdirs += openssl-0.9.7e
105 endif
106 endif
107endif
108ifdef VBOX_WITH_MAIN
109 ifdef VBOX_WITH_XPCOM
110 subdirs += xpcom18a4
111 endif
112 # Only build libxml2 if we don't use an external library.
113 ifeq ($(SDK_VBOX_LIBXML2_INCS),$(PATH_ROOT)/src/libs/libxml2-2.6.30/include)
114 subdirs += libxml2-2.6.30
115 endif
116 # Only build libxslt if we don't use an external library.
117 ifeq ($(SDK_VBOX_LIBXSLT_INCS),$(PATH_ROOT)/src/libs/libxslt-1.1.22)
118 subdirs += libxslt-1.1.22
119 endif
120 # FFmpeg for test videos
121 ifdef VBOX_WITH_FFMPEG
122 ifeq ($(KBUILD_TARGET),darwin)
123 subdirs += ffmpeg-20060710
124 endif
125 endif
126endif
127
128# optimized walking
129SUBDIRS_BLDPROGS = $(filter xpcom18a4,$(subdirs))
130SUBDIRS_LIBRARIES = $(subdirs)
131SUBDIRS_BINARIES = $(filter xpcom18a4,$(subdirs))
132SUBDIRS_DLLS = $(filter xpcom18a4 ffmpeg-20060710,$(subdirs))
133SUBDIRS_OTHERS = $(filter xpcom18a4,$(subdirs))
134SUBDIRS_CLEAN = $(subdirs)
135SUBDIRS_NOTHING = $(subdirs)
136
137include $(KBUILD_PATH)/footer.kmk
138endif # !VBOX_SINGLE_MAKEFILE
139
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette