VirtualBox

source: kBuild/tags/2006-09-14/Config.kmk

Last change on this file was 467, checked in by bird, 18 years ago

fixed kDep.lib problem.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.5 KB
Line 
1# $Id: Config.kmk 467 2006-07-15 04:25:24Z bird $
2## @file
3#
4# Build Configuration.
5#
6# Copyright (c) 2005 knut st. osmundsen <bird@anduin.net>
7#
8#
9# This file is part of kBuild.
10#
11# kBuild is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version 2 of the License, or
14# (at your option) any later version.
15#
16# kBuild is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with kBuild; if not, write to the Free Software
23# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24#
25#
26
27# Enable automatic installation of what's built.
28KBUILD_DO_AUTO_INSTALL := 1
29
30#
31# Template for building commandline tools.
32#
33TEMPLATE_BIN = Commandline binary
34
35TEMPLATE_BIN_INCS = $(PATH_ROOT)/src/lib
36
37ifeq ($(BUILD_TARGET),os2)
38TEMPLATE_BIN_TOOL = GCC3OMF
39TEMPLATE_BIN_CFLAGS.profile = -pg
40TEMPLATE_BIN_CFLAGS.release = -O3
41TEMPLATE_BIN_LDFLAGS = -Zhigh-mem -Zstack=1024
42TEMPLATE_BIN_INST = kBuild/bin/x86.os2/
43endif
44
45ifeq ($(BUILD_TARGET),win32)
46TEMPLATE_BIN_TOOL = VCC70
47TEMPLATE_BIN_DEFS = WINDOWS32 _CONSOLE WIN32 __WIN32__
48TEMPLATE_BIN_DEFS.release = NDEBUG
49TEMPLATE_BIN_CFLAGS = -MT -W3
50TEMPLATE_BIN_INCS += \
51 . \
52 $(PATH_ROOT)/src/gmake/w32/include \
53 $(PATH_ROOT)/src/gmake/glob \
54 $(PATH_DEV)/x86.win32/vcc70/include \
55 $(PATH_DEV)/x86.win32/sdk200209/include
56TEMPLATE_BIN_LDFLAGS = /SUBSYSTEM:console /INCREMENTAL:no /NOD
57TEMPLATE_BIN_LIBS = \
58 $(PATH_DEV)/x86.win32/vcc70/lib/libcmt.lib \
59 $(PATH_DEV)/x86.win32/vcc70/lib/oldnames.lib \
60 $(PATH_DEV)/x86.win32/sdk200209/lib/Kernel32.Lib \
61 $(PATH_DEV)/x86.win32/sdk200209/lib/User32.Lib \
62 $(PATH_DEV)/x86.win32/sdk200209/lib/AdvAPI32.Lib
63TEMPLATE_BIN_INST = kBuild/bin/x86.win32/
64endif
65
66ifndef TEMPLATE_BIN_TOOL
67TEMPLATE_BIN_TOOL = GCC3
68TEMPLATE_BIN_CFLAGS.release = -O3
69TEMPLATE_BIN_LDFLAGS = -static
70ifeq ($(BUILD_TARGET),linux)
71TEMPLATE_BIN_LIBS += rt
72endif
73ifeq ($(BUILD_TARGET),freebsd)
74TEMPLATE_BIN_LIBS += iconv intl
75TEMPLATE_BIN_LIBPATH += /usr/local/lib
76TEMPLATE_BIN_INCS += $(PATH_ROOT)/src/gmake/glob /usr/local/include
77endif
78TEMPLATE_BIN_INST = kBuild/bin/$(BUILD_TARGET_ARCH).$(BUILD_TARGET)/
79endif
80
81
82
83#
84# Template for building libraries for the tools.
85#
86TEMPLATE_LIB = Library for Commandline binary
87
88TEMPLATE_LIB_TOOL = $(TEMPLATE_BIN_TOOL)
89TEMPLATE_LIB_INST = lib/
90TEMPLATE_LIB_INCS = $(TEMPLATE_BIN_INCS)
91TEMPLATE_LIB_INCS.$(BUILD_TYPE) = $(TEMPLATE_BIN_INCS.$(BUILD_TYPE))
92TEMPLATE_LIB_DEFS = $(TEMPLATE_BIN_DEFS)
93TEMPLATE_LIB_DEFS.$(BUILD_TYPE) = $(TEMPLATE_BIN_DEFS.$(BUILD_TYPE))
94TEMPLATE_LIB_CFLAGS = $(TEMPLATE_BIN_CFLAGS)
95TEMPLATE_LIB_CFLAGS.$(BUILD_TYPE) = $(TEMPLATE_BIN_CFLAGS.$(BUILD_TYPE))
96TEMPLATE_LIB_CXXFLAGS = $(TEMPLATE_BIN_CXXFLAGS)
97TEMPLATE_LIB_CXXFLAGS.$(BUILD_TYPE) = $(TEMPLATE_BIN_CXXFLAGS.$(BUILD_TYPE))
98
99LIB_KDEP = $(PATH_OUT)/$(TEMPLATE_LIB_INST)$(TOOL_$(TEMPLATE_LIB_TOOL)_ARLIBPREF)kDep$$(TOOL_$(TEMPLATE_LIB_TOOL)_ARLIBSUFF)
100
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