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

Last change on this file since 99 was 99, checked in by bird, 21 years ago

don't trap make if nasm isn't there...

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.5 KB
Line 
1# $Id: NASM.kmk 99 2004-06-11 23:47:39Z bird $
2## @file
3#
4# kBuild Tool Config - NASM 0.98 or later.
5#
6# Copyright (c) 2004 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_NASM := Netwide Assembler 0.98+
29ifndef PATH_TOOL_NASM
30PATH_TOOL_NASM := $(sort $(wildcard $(PATH_DEV)/$(BUILD_PLATFORM_ARCH).$(BUILD_PLATFORM)/nasm/v*.*))
31ifneq ($(PATH_TOOL_NASM),)
32PATH_TOOL_NASM := $(call lastword,$(PATH_TOOL_NASM))
33endif
34endif
35
36ifneq ($(PATH_TOOL_NASM),)
37TOOL_NASM_AS := $(PATH_TOOL_NASM)/nasm$(HOSTSUFF_EXE)
38else
39TOOL_NASM_AS := nasm$(HOSTSUFF_EXE)
40endif
41TOOL_NASM_ASFLAGS :=
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#
54# @param $(outbase) Output basename (full). Use this for list files and such.
55# @param $(objsuff) Object suffix.
56define TOOL_NASM_COMPILE_AS
57#$ (warning dbg: TOOL_NASM_COMPILE_AS: target=$(target) source=$(source) obj=$(obj) dep=$(dep) flags=$(flags) defs=$(defs) incs=$(incs) dirdep=$(dirdep) outbase=$(outbase) objsuff=$(objsuff))
58$(obj): $(dirdep) $(PATH_CURRENT)/$(source)
59 $(call MSG_L2,Compiling $$@ using NASM)
60 $(TOOL_NASM_AS) \
61 $(flags) $(addsuffix /,$(addprefix -i, $(call CYGPATHMIXED,$(incs)))) $(addprefix -D, $(defs))\
62 -l $(call CYGPATHMIXED,$(outbase).lst) \
63 -o $(call CYGPATHMIXED,$(obj)) \
64 $(call CYGPATHMIXED,$(PATH_CURRENT)/$(source))
65_OUT_FILES += $(outbase).lst
66
67endef
68
69
Note: See TracBrowser for help on using the repository browser.