source: trunk/kBuild/tools/NASM.kmk@ 2243

Last change on this file since 2243 was 2243, checked in by bird, 17 years ago

*: Updated copyright to 2009 and normalized name & email.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1# $Id: NASM.kmk 2243 2009-01-10 02:24:02Z bird $
2## @file
3# kBuild Tool Config - Netwide Assembler v0.98+.
4#
5
6#
7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
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# As a special exception you are granted permission to include this file, via
27# the kmk include directive, as you wish without this in itself causing the
28# resulting makefile, program or whatever to be covered by the GPL license.
29# This exception does not however invalidate any other reasons why the makefile,
30# program, whatever should not be covered the GPL.
31#
32#
33
34TOOL_NASM := Netwide Assembler v0.98+
35
36# Tool Specific Properties
37ifndef PATH_TOOL_NASM
38 PATH_TOOL_NASM := $(sort $(wildcard $(PATH_DEVTOOLS_BLD)/nasm/v*.*))
39 ifneq ($(PATH_TOOL_NASM),)
40 PATH_TOOL_NASM := $(call lastword,$(PATH_TOOL_NASM))
41 endif
42else
43 # Resolve any fancy stuff once and for all.
44 PATH_TOOL_NASM := $(PATH_TOOL_NASM)
45endif
46
47ifneq ($(PATH_TOOL_NASM),)
48 TOOL_NASM_AS ?= $(PATH_TOOL_NASM)/nasm$(HOSTSUFF_EXE)
49else
50 TOOL_NASM_AS ?= nasm$(HOSTSUFF_EXE)
51endif
52
53# General Properties used by kBuild
54TOOL_NASM_ASFLAGS ?=
55
56
57## Compile Assembly source.
58# @param $(target) Normalized main target name.
59# @param $(source) Source filename (relative).
60# @param $(obj) Object file name. This shall be (re)created by the compilation.
61# @param $(dep) Dependcy file. This shall be (re)created by the compilation.
62# @param $(flags) Flags.
63# @param $(defs) Definitions. No -D or something.
64# @param $(incs) Includes. No -I or something.
65# @param $(dirdep) Directory creation dependency.
66# @param $(deps) Other dependencies.
67# @param $(outbase) Output basename (full). Use this for list files and such.
68# @param $(objsuff) Object suffix.
69#
70TOOL_NASM_COMPILE_AS_OUTPUT = $(outbase).lst
71TOOL_NASM_COMPILE_AS_DEPEND =
72TOOL_NASM_COMPILE_AS_DEPORD =
73define TOOL_NASM_COMPILE_AS_CMDS
74 $(QUIET)$(TOOL_NASM_AS)\
75 $(flags) $(addsuffix /,$(addprefix -i, $(incs))) $(addprefix -D, $(defs))\
76 -l $(outbase).lst\
77 -o $(obj)\
78 $(abspath $(source))
79 $(QUIET)$(REDIRECT) -wo $(dep) -- $(TOOL_NASM_AS)\
80 $(flags) $(addsuffix /,$(addprefix -i, $(incs))) $(addprefix -D, $(defs))\
81 -l $(outbase).lst\
82 -o $(obj)\
83 $(abspath $(source)) \
84 -M
85endef
86
Note: See TracBrowser for help on using the repository browser.