VirtualBox

source: kBuild/trunk/Config.kmk@ 427

Last change on this file since 427 was 427, checked in by bird, 19 years ago

do -pg on OS/2.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.4 KB
Line 
1# $Id: Config.kmk 427 2006-03-26 04:31:34Z 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
28#
29# Template for building commandline tools.
30#
31TEMPLATE_BIN = Commandline binary
32
33TEMPLATE_BIN_INCS = $(PATH_ROOT)/src/lib
34
35ifeq ($(BUILD_TARGET),os2)
36TEMPLATE_BIN_TOOL = GCC3OMF
37TEMPLATE_BIN_CFLAGS.profile = -pg
38TEMPLATE_BIN_CFLAGS.release = -O3
39TEMPLATE_BIN_LDFLAGS = -Zhigh-mem -Zstack=1024
40TEMPLATE_BIN_INST = kBuild/bin/x86.os2/
41endif
42
43ifeq ($(BUILD_TARGET),win32)
44TEMPLATE_BIN_TOOL = VCC70
45TEMPLATE_BIN_DEFS = WINDOWS32 _CONSOLE WIN32 __WIN32__
46TEMPLATE_BIN_DEFS.release = NDEBUG
47TEMPLATE_BIN_CFLAGS = -MT -W3
48TEMPLATE_BIN_INCS += \
49 . \
50 $(PATH_ROOT)/src/gmake/w32/include \
51 $(PATH_ROOT)/src/gmake/glob \
52 $(PATH_DEV)/x86.win32/vcc70/include \
53 $(PATH_DEV)/x86.win32/sdk200209/include
54TEMPLATE_BIN_LDFLAGS = /SUBSYSTEM:console /INCREMENTAL:no /NOD
55TEMPLATE_BIN_LIBS = \
56 $(PATH_DEV)/x86.win32/vcc70/lib/libcmt.lib \
57 $(PATH_DEV)/x86.win32/vcc70/lib/oldnames.lib \
58 $(PATH_DEV)/x86.win32/sdk200209/lib/Kernel32.Lib \
59 $(PATH_DEV)/x86.win32/sdk200209/lib/User32.Lib \
60 $(PATH_DEV)/x86.win32/sdk200209/lib/AdvAPI32.Lib
61TEMPLATE_BIN_INST = kBuild/bin/x86.win32/
62endif
63
64ifndef TEMPLATE_BIN_TOOL
65TEMPLATE_BIN_TOOL = GCC3
66TEMPLATE_BIN_CFLAGS.release = -O3
67TEMPLATE_BIN_LDFLAGS = -static
68ifeq ($(BUILD_TARGET),linux)
69TEMPLATE_BIN_LIBS += rt
70endif
71ifeq ($(BUILD_TARGET),freebsd)
72TEMPLATE_BIN_LIBS += iconv intl
73TEMPLATE_BIN_LIBPATH += /usr/local/lib
74TEMPLATE_BIN_INCS += $(PATH_ROOT)/src/gmake/glob /usr/local/include
75endif
76TEMPLATE_BIN_INST = kBuild/bin/$(BUILD_TARGET_ARCH).$(BUILD_TARGET)/
77endif
78
79
80
81#
82# Template for building libraries for the tools.
83#
84TEMPLATE_LIB = Library for Commandline binary
85
86TEMPLATE_LIB_TOOL = $(TEMPLATE_BIN_TOOL)
87TEMPLATE_LIB_INST = lib/
88TEMPLATE_LIB_INCS = $(TEMPLATE_BIN_INCS)
89TEMPLATE_LIB_INCS.$(BUILD_TYPE) = $(TEMPLATE_BIN_INCS.$(BUILD_TYPE))
90TEMPLATE_LIB_DEFS = $(TEMPLATE_BIN_DEFS)
91TEMPLATE_LIB_DEFS.$(BUILD_TYPE) = $(TEMPLATE_BIN_DEFS.$(BUILD_TYPE))
92TEMPLATE_LIB_CFLAGS = $(TEMPLATE_BIN_CFLAGS)
93TEMPLATE_LIB_CFLAGS.$(BUILD_TYPE) = $(TEMPLATE_BIN_CFLAGS.$(BUILD_TYPE))
94TEMPLATE_LIB_CXXFLAGS = $(TEMPLATE_BIN_CXXFLAGS)
95TEMPLATE_LIB_CXXFLAGS.$(BUILD_TYPE) = $(TEMPLATE_BIN_CXXFLAGS.$(BUILD_TYPE))
96
97LIB_KDEP = $(PATH_OUT)/$(TEMPLATE_LIB_INST)$(TOOL_$(TEMPLATE_LIB_TOOL)_ARLIBPREF)kDep$$(TOOL_$(TEMPLATE_LIB_TOOL)_ARLIBSUFF)
98
Note: See TracBrowser for help on using the repository browser.

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