Ignore:
Timestamp:
Dec 4, 2004, 3:26:54 AM (21 years ago)
Author:
bird
Message:

Dependencies.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/tools/NASM.kmk

    r129 r184  
    3333endif
    3434endif
    35                
     35
    3636ifneq ($(PATH_TOOL_NASM),)
    3737TOOL_NASM_AS                  := $(PATH_TOOL_NASM)/nasm$(HOSTSUFF_EXE)
     
    5151# @param    $(incs)     Includes. No -I or something.
    5252# @param        $(dirdep)   Directory creation dependency.
     53# @param        $(deps)         Other dependencies.
    5354#
    5455# @param    $(outbase)  Output basename (full). Use this for list files and such.
    5556# @param        $(objsuff)  Object suffix.
    5657define 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) $(source)
     58#$ (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) deps=$(deps))
     59$(obj): $(dirdep) $(source) $(deps)
    5960        $(call MSG_L2,Compiling $$@ using NASM)
    6061        $(TOOL_NASM_AS) \
     
    6465                $(call ABSPATH,$(source))
    6566_OUT_FILES += $(outbase).lst
    66                
     67
    6768endef
    6869
Note: See TracChangeset for help on using the changeset viewer.