Changeset 184 for trunk/kBuild/tools/NASM.kmk
- Timestamp:
- Dec 4, 2004, 3:26:54 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/NASM.kmk
r129 r184 33 33 endif 34 34 endif 35 35 36 36 ifneq ($(PATH_TOOL_NASM),) 37 37 TOOL_NASM_AS := $(PATH_TOOL_NASM)/nasm$(HOSTSUFF_EXE) … … 51 51 # @param $(incs) Includes. No -I or something. 52 52 # @param $(dirdep) Directory creation dependency. 53 # @param $(deps) Other dependencies. 53 54 # 54 55 # @param $(outbase) Output basename (full). Use this for list files and such. 55 56 # @param $(objsuff) Object suffix. 56 57 define 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) 59 60 $(call MSG_L2,Compiling $$@ using NASM) 60 61 $(TOOL_NASM_AS) \ … … 64 65 $(call ABSPATH,$(source)) 65 66 _OUT_FILES += $(outbase).lst 66 67 67 68 endef 68 69
Note:
See TracChangeset
for help on using the changeset viewer.