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