Changeset 79 in xtideuniversalbios for trunk/Assembly_Library/makefile


Ignore:
Timestamp:
Jan 6, 2011, 8:24:40 AM (13 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to Assembly Library:

  • Makefile now uses Nasm (instead of Yasm)
  • Makefile now generates listing files
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/makefile

    r47 r79  
    8181
    8282# Assembler
    83 AS = yasm.exe
    84 #AS = nasm.exe
     83AS = nasm.exe
    8584
    8685# use this command to erase files.
     
    111110
    112111at:
    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)"
    114113    @echo AT version "$(TARGET)_at.$(EXTENSION)" build.
    115114
    116115xtplus:
    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)"
    118117    @echo XT plus version "$(TARGET)_xtp.$(EXTENSION)" build.
    119118
    120119xt:
    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)"
    122121    @echo XT version "$(TARGET)_xt.$(EXTENSION)" build.
    123122
Note: See TracChangeset for help on using the changeset viewer.