Changeset 79 in xtideuniversalbios for trunk/Assembly_Library/makefile
- Timestamp:
- Jan 6, 2011, 8:24:40 AM (14 years ago)
- google:author:
- aitotat
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/makefile
r47 r79 81 81 82 82 # Assembler 83 AS = yasm.exe 84 #AS = nasm.exe 83 AS = nasm.exe 85 84 86 85 # use this command to erase files. … … 111 110 112 111 at: 113 @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) - o"$(TARGET)_at.$(EXTENSION)"112 @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -l"$(TARGET)_at.lst" -o"$(TARGET)_at.$(EXTENSION)" 114 113 @echo AT version "$(TARGET)_at.$(EXTENSION)" build. 115 114 116 115 xtplus: 117 @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS) - o"$(TARGET)_xtp.$(EXTENSION)"116 @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS) -l"$(TARGET)_xtp.lst" -o"$(TARGET)_xtp.$(EXTENSION)" 118 117 @echo XT plus version "$(TARGET)_xtp.$(EXTENSION)" build. 119 118 120 119 xt: 121 @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) - o"$(TARGET)_xt.$(EXTENSION)"120 @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -l"$(TARGET)_xt.lst" -o"$(TARGET)_xt.$(EXTENSION)" 122 121 @echo XT version "$(TARGET)_xt.$(EXTENSION)" build. 123 122
Note:
See TracChangeset
for help on using the changeset viewer.