[3] | 1 | ###############################################################################
|
---|
[252] | 2 | # Makefile to build XTIDE Universal BIOS. #
|
---|
[3] | 3 | # #
|
---|
| 4 | # Valid makefile targets are: #
|
---|
| 5 | # all Removes existing files and builds binary file in \Build #
|
---|
| 6 | # build Builds binary file in \Build #
|
---|
| 7 | # clean Removes all files from \Build #
|
---|
[252] | 8 | # checksum* Builds all and then generates checksum byte to all binary files #
|
---|
| 9 | # strings* Compress src\strings.asm to src\StringsCompressed.asm #
|
---|
[3] | 10 | # #
|
---|
[252] | 11 | # * at the end of target name means that Perl is required for the job. #
|
---|
[3] | 12 | # Build directory must be created manually if it does not exist. #
|
---|
| 13 | # #
|
---|
| 14 | ###############################################################################
|
---|
| 15 |
|
---|
| 16 | ###########################################
|
---|
| 17 | # Source files and destination executable #
|
---|
| 18 | ###########################################
|
---|
| 19 |
|
---|
| 20 | # Assembly source code file (*.asm):
|
---|
| 21 | SRC_ASM = Src/Main.asm
|
---|
| 22 |
|
---|
| 23 | # Program executable file name without extension:
|
---|
| 24 | PROG = ide
|
---|
| 25 |
|
---|
| 26 |
|
---|
| 27 | #######################################
|
---|
| 28 | # Destination and include directories #
|
---|
| 29 | #######################################
|
---|
| 30 |
|
---|
| 31 | # Directory where binary file will be compiled to
|
---|
| 32 | BUILD_DIR = Build
|
---|
| 33 |
|
---|
| 34 | # Subdirectories where included files are:
|
---|
| 35 | HEADERS = Inc/
|
---|
| 36 | HEADERS += Src/
|
---|
| 37 | HEADERS += Src/Boot/
|
---|
| 38 | HEADERS += Src/Handlers/
|
---|
| 39 | HEADERS += Src/Handlers/Int13h/
|
---|
[165] | 40 | HEADERS += Src/Handlers/Int13h/EBIOS/
|
---|
| 41 | HEADERS += Src/Handlers/Int13h/Tools/
|
---|
[150] | 42 | HEADERS += Src/Device/
|
---|
| 43 | HEADERS += Src/Device/IDE/
|
---|
[238] | 44 | HEADERS += Src/Device/MemoryMappedIDE/
|
---|
[150] | 45 | HEADERS += Src/Device/Serial/
|
---|
[3] | 46 | HEADERS += Src/Initialization/
|
---|
| 47 | HEADERS += Src/Libraries/
|
---|
| 48 | HEADERS += Src/VariablesAndDPTs/
|
---|
| 49 |
|
---|
[88] | 50 | # Subdirectories where library files are:
|
---|
| 51 | LIBS = ../Assembly_Library/Inc/
|
---|
| 52 | LIBS += ../Assembly_Library/Src/
|
---|
| 53 | LIBS += ../Assembly_Library/Src/Display/
|
---|
| 54 | LIBS += ../Assembly_Library/Src/File/
|
---|
| 55 | LIBS += ../Assembly_Library/Src/Keyboard/
|
---|
| 56 | LIBS += ../Assembly_Library/Src/Menu/
|
---|
| 57 | LIBS += ../Assembly_Library/Src/Menu/Dialog/
|
---|
| 58 | LIBS += ../Assembly_Library/Src/String/
|
---|
| 59 | LIBS += ../Assembly_Library/Src/Time/
|
---|
| 60 | LIBS += ../Assembly_Library/Src/Util/
|
---|
| 61 | LIBS += ../XTIDE_Universal_BIOS/Inc/
|
---|
| 62 | HEADERS += $(LIBS)
|
---|
[3] | 63 |
|
---|
[88] | 64 |
|
---|
[3] | 65 | #################################################################
|
---|
| 66 | # Assembler preprocessor defines. #
|
---|
| 67 | #################################################################
|
---|
[186] | 68 | DEFINES = INCLUDE_MENU_LIBRARY EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS MODULE_EBIOS MODULE_SERIAL MODULE_STRINGS_COMPRESSED
|
---|
[88] | 69 | DEFINES_XT = ELIMINATE_CGA_SNOW
|
---|
| 70 | DEFINES_XTPLUS = ELIMINATE_CGA_SNOW USE_186
|
---|
[3] | 71 | DEFINES_AT = USE_186 USE_286 USE_AT
|
---|
[238] | 72 | DEFINES_XT_LARGE = $(DEFINES_XT) MODULE_JRIDE
|
---|
| 73 | DEFINES_XTPLUS_LARGE = $(DEFINES_XTPLUS) MODULE_JRIDE
|
---|
| 74 | DEFINES_AT_LARGE = $(DEFINES_AT) MODULE_JRIDE
|
---|
[3] | 75 |
|
---|
| 76 |
|
---|
| 77 | ###################
|
---|
| 78 | # Other variables #
|
---|
| 79 | ###################
|
---|
| 80 |
|
---|
[239] | 81 | # Target size of the ROM, used in main.asm for number of 512B blocks and by checksum Perl script below
|
---|
| 82 | ROMSIZE = 8192
|
---|
| 83 | ROMSIZE_LARGE = 15360
|
---|
| 84 |
|
---|
[3] | 85 | # Add -D in front of every preprocessor define declaration
|
---|
[239] | 86 | DEFS = $(DEFINES:%=-D%)
|
---|
| 87 | DEFS_XT = $(DEFINES_XT:%=-D%) -DROMSIZE=$(ROMSIZE)
|
---|
| 88 | DEFS_XTPLUS = $(DEFINES_XTPLUS:%=-D%) -DROMSIZE=$(ROMSIZE)
|
---|
| 89 | DEFS_AT = $(DEFINES_AT:%=-D%) -DROMSIZE=$(ROMSIZE)
|
---|
| 90 | DEFS_XT_LARGE = $(DEFINES_XT_LARGE:%=-D%) -DROMSIZE=$(ROMSIZE_LARGE)
|
---|
| 91 | DEFS_XTPLUS_LARGE = $(DEFINES_XTPLUS_LARGE:%=-D%) -DROMSIZE=$(ROMSIZE_LARGE)
|
---|
| 92 | DEFS_AT_LARGE = $(DEFINES_AT_LARGE:%=-D%) -DROMSIZE=$(ROMSIZE_LARGE)
|
---|
[3] | 93 |
|
---|
| 94 | # Add -I in front of all header directories
|
---|
| 95 | IHEADERS = $(HEADERS:%=-I%)
|
---|
| 96 |
|
---|
[145] | 97 | # Path + target file to be built
|
---|
[3] | 98 | TARGET = $(BUILD_DIR)/$(PROG)
|
---|
| 99 |
|
---|
| 100 | #########################
|
---|
| 101 | # Compilers and linkers #
|
---|
| 102 | #########################
|
---|
| 103 |
|
---|
| 104 | # Make
|
---|
| 105 | MAKE = mingw32-make.exe
|
---|
| 106 |
|
---|
| 107 | # Assembler
|
---|
[188] | 108 | AS = nasm.exe
|
---|
[3] | 109 |
|
---|
| 110 | # use this command to erase files.
|
---|
| 111 | RM = -del /Q
|
---|
| 112 |
|
---|
| 113 |
|
---|
| 114 | #############################
|
---|
| 115 | # Compiler and linker flags #
|
---|
| 116 | #############################
|
---|
| 117 |
|
---|
| 118 | # Assembly compiler flags
|
---|
| 119 | ASFLAGS = -f bin # Produce binary object files
|
---|
| 120 | ASFLAGS += $(DEFS) # Preprocessor defines
|
---|
| 121 | ASFLAGS += $(IHEADERS) # Set header file directory paths
|
---|
| 122 | ASFLAGS += -Worphan-labels # Warn about labels without colon
|
---|
| 123 | ASFLAGS += -O9 # Optimize operands to their shortest forms
|
---|
| 124 |
|
---|
| 125 |
|
---|
| 126 | ############################################
|
---|
| 127 | # Build process. Actual work is done here. #
|
---|
| 128 | ############################################
|
---|
| 129 |
|
---|
[238] | 130 | .PHONY: all at at_large xtplus xtplus_large xt xt_large clean
|
---|
[3] | 131 |
|
---|
| 132 | # Make clean debug and release versions
|
---|
[238] | 133 | all: clean at at_large xtplus xtplus_large xt xt_large
|
---|
[145] | 134 | @echo All done!
|
---|
[3] | 135 |
|
---|
| 136 | at:
|
---|
[80] | 137 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -l"$(TARGET)_at.lst" -o"$(TARGET)_at.bin"
|
---|
[145] | 138 | @echo AT version "$(TARGET)_at.bin" built.
|
---|
[3] | 139 |
|
---|
[238] | 140 | at_large:
|
---|
| 141 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT_LARGE) -l"$(TARGET)_atl.lst" -o"$(TARGET)_atl.bin"
|
---|
| 142 | @echo Large AT version "$(TARGET)_atl.bin" built.
|
---|
| 143 |
|
---|
[3] | 144 | xtplus:
|
---|
[80] | 145 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS) -l"$(TARGET)_xtp.lst" -o"$(TARGET)_xtp.bin"
|
---|
[145] | 146 | @echo XT plus version "$(TARGET)_xtp.bin" built.
|
---|
[3] | 147 |
|
---|
[238] | 148 | xtplus_large:
|
---|
| 149 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS_LARGE) -l"$(TARGET)_xtpl.lst" -o"$(TARGET)_xtpl.bin"
|
---|
| 150 | @echo Large XT plus version "$(TARGET)_xtpl.bin" built.
|
---|
| 151 |
|
---|
[3] | 152 | xt:
|
---|
[80] | 153 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -l"$(TARGET)_xt.lst" -o"$(TARGET)_xt.bin"
|
---|
[145] | 154 | @echo XT version "$(TARGET)_xt.bin" built.
|
---|
[3] | 155 |
|
---|
[238] | 156 | xt_large:
|
---|
| 157 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT_LARGE) -l"$(TARGET)_xtl.lst" -o"$(TARGET)_xtl.bin"
|
---|
| 158 | @echo Large XT version "$(TARGET)_xtl.bin" built.
|
---|
| 159 |
|
---|
[252] | 160 | strings: src\StringsCompressed.asm
|
---|
| 161 |
|
---|
[3] | 162 | clean:
|
---|
| 163 | @$(RM) $(BUILD_DIR)\*.*
|
---|
| 164 | @echo Deleted "(*.*)" from "$(BUILD_DIR)/"
|
---|
[186] | 165 |
|
---|
[203] | 166 | checksum: all
|
---|
[240] | 167 | @perl ..\tools\checksum.pl $(TARGET)_atl.bin $(ROMSIZE_LARGE)
|
---|
| 168 | @perl ..\tools\checksum.pl $(TARGET)_xtpl.bin $(ROMSIZE_LARGE)
|
---|
| 169 | @perl ..\tools\checksum.pl $(TARGET)_xtl.bin $(ROMSIZE_LARGE)
|
---|
[203] | 170 | @perl ..\tools\checksum.pl $(TARGET)_at.bin $(ROMSIZE)
|
---|
| 171 | @perl ..\tools\checksum.pl $(TARGET)_xtp.bin $(ROMSIZE)
|
---|
| 172 | @perl ..\tools\checksum.pl $(TARGET)_xt.bin $(ROMSIZE)
|
---|
| 173 |
|
---|
[252] | 174 | src\StringsCompressed.asm: src\Strings.asm
|
---|
[203] | 175 | @$(AS) src\Strings.asm $(ASFLAGS) $(DEFS_XT) -DMODULE_STRINGS_COMPRESSED_PRECOMPRESS -o build\Strings.bin -l build\StringsPrecompress.lst
|
---|
| 176 | @perl ..\tools\StringsCompress.pl < build\StringsPrecompress.lst > src\StringsCompressed.asm
|
---|
| 177 | @echo StringsCompressed.asm updated!
|
---|
[186] | 178 |
|
---|
[252] | 179 | xt_unused: xt
|
---|
[194] | 180 | $(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -o"$(TARGET)_xt_unused.asm" -E -DCHECK_FOR_UNUSED_ENTRYPOINTS
|
---|
| 181 | perl ..\tools\unused.pl $(TARGET)_xt.lst $(TARGET)_xt_unused.asm
|
---|
| 182 |
|
---|