Changeset 82 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS_Configurator_v2


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

Changes to Configurator v2:

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

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS_Configurator_v2/makefile

    r68 r82  
    8989
    9090# Assembler
    91 AS = yasm.exe
    92 #AS = nasm.exe
     91AS = nasm.exe
    9392
    9493# use this command to erase files.
     
    119118
    120119at:
    121     @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -o"$(TARGET)_at.$(EXTENSION)"
     120    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -l"$(TARGET)_at.lst" -o"$(TARGET)_at.$(EXTENSION)"
    122121    @echo AT version "$(TARGET)_at.$(EXTENSION)" build.
    123122
    124123xtplus:
    125     @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS) -o"$(TARGET)_xtp.$(EXTENSION)"
     124    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS) -l"$(TARGET)_xtp.lst" -o"$(TARGET)_xtp.$(EXTENSION)"
    126125    @echo XT plus version "$(TARGET)_xtp.$(EXTENSION)" build.
    127126
    128127xt:
    129     @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -o"$(TARGET).$(EXTENSION)"
     128    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -l"$(TARGET)_xt.lst" -o"$(TARGET).$(EXTENSION)"
    130129    @echo XT version "$(TARGET).$(EXTENSION)" build.
    131130
Note: See TracChangeset for help on using the changeset viewer.