Changeset 145 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/makefile


Ignore:
Timestamp:
Mar 15, 2011, 11:28:17 AM (13 years ago)
Author:
krille_n_@…
google:author:
krille_n_@hotmail.com
Message:

Minor size optimizations to all parts of the project (even the old Configurator).
Also added a new 'release' option to the makefiles of both versions of the Configurator. It invokes UPX and makes the Configurator programs ridiculously tiny.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/makefile

    r132 r145  
    8080IHEADERS = $(HEADERS:%=-I%)
    8181
    82 # Path + target file to be build
     82# Path + target file to be built
    8383TARGET = $(BUILD_DIR)/$(PROG)
    8484
     
    118118# Make clean debug and release versions
    119119all: clean at xtplus xt
    120     @echo All build!
     120    @echo All done!
    121121
    122122at:
    123123    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -l"$(TARGET)_at.lst" -o"$(TARGET)_at.bin"
    124     @echo AT version "$(TARGET)_at.bin" build.
     124    @echo AT version "$(TARGET)_at.bin" built.
    125125
    126126xtplus:
    127127    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS) -l"$(TARGET)_xtp.lst" -o"$(TARGET)_xtp.bin"
    128     @echo XT plus version "$(TARGET)_xtp.bin" build.
     128    @echo XT plus version "$(TARGET)_xtp.bin" built.
    129129
    130130xt:
    131131    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -l"$(TARGET)_xt.lst" -o"$(TARGET)_xt.bin"
    132     @echo XT version "$(TARGET)_xt.bin" build.
     132    @echo XT version "$(TARGET)_xt.bin" built.
    133133
    134134clean:
Note: See TracChangeset for help on using the changeset viewer.