Changeset 145 in xtideuniversalbios for trunk/Assembly_Library/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/Assembly_Library/makefile

    r85 r145  
    5050# Assembler preprocessor defines.                               #
    5151#################################################################
    52 DEFINES = 
     52DEFINES =
    5353DEFINES_XT = ELIMINATE_CGA_SNOW
    5454DEFINES_XTPLUS = USE_186 ELIMINATE_CGA_SNOW
     
    6969IHEADERS = $(HEADERS:%=-I%)
    7070
    71 # Path + target file to be build
     71# Path + target file to be built
    7272TARGET = $(BUILD_DIR)/$(PROG)
    7373
     
    107107# Make clean debug and release versions
    108108all: clean at xtplus xt
    109     @echo All build!
     109    @echo All done!
    110110
    111111at:
    112112    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -l"$(TARGET)_at.lst" -o"$(TARGET)_at.$(EXTENSION)"
    113     @echo AT version "$(TARGET)_at.$(EXTENSION)" build.
     113    @echo AT version "$(TARGET)_at.$(EXTENSION)" built.
    114114
    115115xtplus:
    116116    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS) -l"$(TARGET)_xtp.lst" -o"$(TARGET)_xtp.$(EXTENSION)"
    117     @echo XT plus version "$(TARGET)_xtp.$(EXTENSION)" build.
     117    @echo XT plus version "$(TARGET)_xtp.$(EXTENSION)" built.
    118118
    119119xt:
    120120    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -l"$(TARGET)_xt.lst" -o"$(TARGET)_xt.$(EXTENSION)"
    121     @echo XT version "$(TARGET)_xt.$(EXTENSION)" build.
     121    @echo XT version "$(TARGET)_xt.$(EXTENSION)" built.
    122122
    123123clean:
Note: See TracChangeset for help on using the changeset viewer.