Changeset 235 for trunk/kBuild/tools/NASM.kmk
- Timestamp:
- Feb 10, 2005, 11:38:52 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/NASM.kmk
r184 r235 45 45 # @param $(target) Normalized main target name. 46 46 # @param $(source) Source filename (relative). 47 # @param 48 # @param $(dep) 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 49 # @param $(flags) Flags. 50 50 # @param $(defs) Definitions. No -D or something. 51 51 # @param $(incs) Includes. No -I or something. 52 # @param 53 # @param $(deps)Other dependencies.52 # @param $(dirdep) Directory creation dependency. 53 # @param $(deps) Other dependencies. 54 54 # 55 55 # @param $(outbase) Output basename (full). Use this for list files and such. 56 # @param 56 # @param $(objsuff) Object suffix. 57 57 define TOOL_NASM_COMPILE_AS 58 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 $(obj): $(source) $(deps) | $(dirdep) 60 60 $(call MSG_L2,Compiling $$@ using NASM) 61 61 $(TOOL_NASM_AS) \
Note:
See TracChangeset
for help on using the changeset viewer.