source: trunk/kBuild/tools/ALP.kmk@ 657

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

use ?= everywhere.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 KB
Line 
1# $Id: ALP.kmk 655 2006-12-04 15:34:29Z bird $
2## @file
3#
4# kBuild Tool Config - ALP or later.
5#
6# Copyright (c) 2005 knut st. osmundsen <bird-srcspam@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
28TOOL_ALP := IBM Assembly Language Processor
29#ifndef PATH_TOOL_ALP
30#PATH_TOOL_ALP := $(sort $(wildcard $(PATH_DEV_BLD)/alp/v*.*))
31#ifneq ($(PATH_TOOL_ALP),)
32#PATH_TOOL_ALP := $(call lastword,$(PATH_TOOL_ALP))
33#endif
34#endif
35
36ifneq ($(PATH_TOOL_ALP),)
37TOOL_ALP_AS ?= $(PATH_TOOL_ALP)/alp$(HOSTSUFF_EXE)
38else
39TOOL_ALP_AS ?= alp$(HOSTSUFF_EXE)
40endif
41TOOL_ALP_ASFLAGS ?= -Mb
42
43
44## Compile Assembly source.
45# @param $(target) Normalized main target name.
46# @param $(source) Source filename (relative).
47# @param $(obj) Object file name. This shall be (re)created by the compilation.
48# @param $(dep) Dependcy file. This shall be (re)created by the compilation.
49# @param $(flags) Flags.
50# @param $(defs) Definitions. No -D or something.
51# @param $(incs) Includes. No -I or something.
52# @param $(dirdep) Directory creation dependency.
53# @param $(deps) Other dependencies.
54#
55# @param $(outbase) Output basename (full). Use this for list files and such.
56# @param $(objsuff) Object suffix.
57TOOL_ALP_COMPILE_AS_OUTPUT = $(outbase).lst
58TOOL_ALP_COMPILE_AS_DEPEND =
59TOOL_ALP_COMPILE_AS_DEPORD =
60define TOOL_ALP_COMPILE_AS_CMDS
61 $(TOOL_ALP_AS)\
62 $(flags) $(addsuffix /,$(addprefix -I:, $(incs))) $(addprefix -D:, $(defs))\
63 $(source)\
64 -Fl:$(outbase).lst\
65 -Fd:$(dep)\
66 -Fo:$(obj)
67endef
68
Note: See TracBrowser for help on using the repository browser.