source: xtideuniversalbios/tags/XTIDE_Universal_BIOS_v2.0.0_beta1/makefile

Last change on this file was 322, checked in by krille_n_@…, 12 years ago

Changes to XTIDE Universal BIOS:

  • Commented out the FS and GS segment registers from INTPACK since we never touch them anyway.
  • Minor changes to improve speed in the Int13h handler.
  • Changed Prepare_ByValidatingSectorsInALforOldInt13h so it really doesn't corrupt anything.
  • Changed the makefile so 'make strings' now works even if StringsCompressed.asm is missing or empty.
File size: 7.2 KB
Line 
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):
22SRC_ASM = Src/Main.asm
23
24# Program executable file name without extension:
25PROG = ide
26
27
28#######################################
29# Destination and include directories #
30#######################################
31
32# Directory where binary file will be compiled to
33BUILD_DIR = Build
34
35# Subdirectories where included files are:
36HEADERS = Inc/
37HEADERS += Src/
38HEADERS += Src/Boot/
39HEADERS += Src/Handlers/
40HEADERS += Src/Handlers/Int13h/
41HEADERS += Src/Handlers/Int13h/EBIOS/
42HEADERS += Src/Handlers/Int13h/Tools/
43HEADERS += Src/Device/
44HEADERS += Src/Device/IDE/
45HEADERS += Src/Device/MemoryMappedIDE/
46HEADERS += Src/Device/Serial/
47HEADERS += Src/Initialization/
48HEADERS += Src/Libraries/
49HEADERS += Src/VariablesAndDPTs/
50
51# Subdirectories where library files are:
52LIBS = ../Assembly_Library/Inc/
53LIBS += ../Assembly_Library/Src/
54LIBS += ../Assembly_Library/Src/Display/
55LIBS += ../Assembly_Library/Src/File/
56LIBS += ../Assembly_Library/Src/Keyboard/
57LIBS += ../Assembly_Library/Src/Menu/
58LIBS += ../Assembly_Library/Src/Menu/Dialog/
59LIBS += ../Assembly_Library/Src/String/
60LIBS += ../Assembly_Library/Src/Time/
61LIBS += ../Assembly_Library/Src/Util/
62LIBS += ../Assembly_Library/Src/Serial/
63LIBS += ../XTIDE_Universal_BIOS/Inc/
64HEADERS += $(LIBS)
65
66
67#################################################################
68# Assembler preprocessor defines.                               #
69#################################################################
70DEFINES = INCLUDE_MENU_LIBRARY EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS MODULE_EBIOS MODULE_STRINGS_COMPRESSED
71DEFINES_XT = ELIMINATE_CGA_SNOW MODULE_SERIAL MODULE_SERIAL_FLOPPY
72DEFINES_XTPLUS = ELIMINATE_CGA_SNOW USE_186 MODULE_SERIAL MODULE_SERIAL_FLOPPY
73DEFINES_AT = USE_286 USE_AT MODULE_SERIAL MODULE_SERIAL_FLOPPY
74DEFINES_XT_LARGE = $(DEFINES_XT) MODULE_JRIDE
75DEFINES_XTPLUS_LARGE = $(DEFINES_XTPLUS) MODULE_JRIDE
76DEFINES_AT_LARGE = $(DEFINES_AT) MODULE_JRIDE
77DEFINES_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
85ROMSIZE = 8192
86ROMSIZE_LARGE = 15360
87
88# Add -D in front of every preprocessor define declaration
89DEFS = $(DEFINES:%=-D%)
90DEFS_XT = $(DEFINES_XT:%=-D%) -DROMSIZE=$(ROMSIZE)
91DEFS_XTPLUS = $(DEFINES_XTPLUS:%=-D%) -DROMSIZE=$(ROMSIZE)
92DEFS_AT = $(DEFINES_AT:%=-D%) -DROMSIZE=$(ROMSIZE)
93DEFS_XT_LARGE = $(DEFINES_XT_LARGE:%=-D%) -DROMSIZE=$(ROMSIZE_LARGE)
94DEFS_XTPLUS_LARGE = $(DEFINES_XTPLUS_LARGE:%=-D%) -DROMSIZE=$(ROMSIZE_LARGE)
95DEFS_AT_LARGE = $(DEFINES_AT_LARGE:%=-D%) -DROMSIZE=$(ROMSIZE_LARGE)
96DEFS_JRIDE_8K = $(DEFINES_JRIDE_8K:%=-D%) -DROMSIZE=$(ROMSIZE)
97
98# Add -I in front of all header directories
99IHEADERS = $(HEADERS:%=-I%)
100
101# Path + target file to be built
102TARGET = $(BUILD_DIR)/$(PROG)
103
104#########################
105# Compilers and linkers #
106#########################
107
108# Make
109MAKE = mingw32-make.exe
110
111# Assembler
112AS = nasm.exe
113
114# use this command to erase files.
115RM = -del /Q
116
117
118#############################
119# Compiler and linker flags #
120#############################
121
122# Assembly compiler flags
123ASFLAGS = -f bin                # Produce binary object files
124ASFLAGS += $(DEFS)              # Preprocessor defines
125ASFLAGS += $(IHEADERS)          # Set header file directory paths
126ASFLAGS += -Worphan-labels      # Warn about labels without colon
127ASFLAGS += -O9                  # Optimize operands to their shortest forms
128
129
130############################################
131# Build process. Actual work is done here. #
132############################################
133
134all: clean small large
135    @echo All done!
136
137small: at xtplus xt jride_8k
138    @echo All 8 kiB binaries built!
139
140large: at_large xtplus_large xt_large
141    @echo All 15 kiB binaries built!
142
143at:
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
147at_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
151xtplus:
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
155xtplus_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
159xt:
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
163xt_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
167jride_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
171strings: src\Strings.asm
172    @$(AS) src\Strings.asm $(ASFLAGS) $(DEFS_XT) -DCHECK_FOR_UNUSED_ENTRYPOINTS -DMODULE_STRINGS_COMPRESSED_PRECOMPRESS -o build\Strings.bin -l build\StringsPrecompress.lst
173    @perl ..\tools\StringsCompress.pl < build\StringsPrecompress.lst > src\StringsCompressed.asm
174    @echo StringsCompressed.asm updated!
175
176clean:
177    @$(RM) $(BUILD_DIR)\*.*
178    @echo Deleted "(*.*)" from "$(BUILD_DIR)/"
179
180checksum: all
181    @perl ..\tools\checksum.pl $(TARGET)_atl.bin $(ROMSIZE_LARGE)
182    @perl ..\tools\checksum.pl $(TARGET)_xtpl.bin $(ROMSIZE_LARGE)
183    @perl ..\tools\checksum.pl $(TARGET)_xtl.bin $(ROMSIZE_LARGE)
184    @perl ..\tools\checksum.pl $(TARGET)_at.bin $(ROMSIZE)
185    @perl ..\tools\checksum.pl $(TARGET)_xtp.bin $(ROMSIZE)
186    @perl ..\tools\checksum.pl $(TARGET)_xt.bin $(ROMSIZE)
187    @perl ..\tools\checksum.pl $(TARGET)_jr8k.bin $(ROMSIZE)
188
189xt_unused: xt
190    $(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -o"$(TARGET)_xt_unused.asm" -E -DCHECK_FOR_UNUSED_ENTRYPOINTS
191    perl ..\tools\unused.pl $(TARGET)_xt.lst $(TARGET)_xt_unused.asm
192
Note: See TracBrowser for help on using the repository browser.