[3] | 1 | ###############################################################################
|
---|
| 2 | # Generic makefile for building BIOS binary file. #
|
---|
| 3 | # v. 1.0.0 (28.7.2007 ... 28.7.2007) #
|
---|
| 4 | # (C) Tomi Tilli #
|
---|
| 5 | # aitotat@gmail.com #
|
---|
| 6 | # #
|
---|
| 7 | # Valid makefile targets are: #
|
---|
| 8 | # all Removes existing files and builds binary file in \Build #
|
---|
| 9 | # build Builds binary file in \Build #
|
---|
| 10 | # clean Removes all files from \Build #
|
---|
| 11 | # #
|
---|
| 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/
|
---|
[150] | 40 | HEADERS += Src/Device/
|
---|
| 41 | HEADERS += Src/Device/IDE/
|
---|
| 42 | HEADERS += Src/Device/Serial/
|
---|
[3] | 43 | HEADERS += Src/Initialization/
|
---|
| 44 | HEADERS += Src/Libraries/
|
---|
| 45 | HEADERS += Src/VariablesAndDPTs/
|
---|
| 46 |
|
---|
[88] | 47 | # Subdirectories where library files are:
|
---|
| 48 | LIBS = ../Assembly_Library/Inc/
|
---|
| 49 | LIBS += ../Assembly_Library/Src/
|
---|
| 50 | LIBS += ../Assembly_Library/Src/Display/
|
---|
| 51 | LIBS += ../Assembly_Library/Src/File/
|
---|
| 52 | LIBS += ../Assembly_Library/Src/Keyboard/
|
---|
| 53 | LIBS += ../Assembly_Library/Src/Menu/
|
---|
| 54 | LIBS += ../Assembly_Library/Src/Menu/Dialog/
|
---|
| 55 | LIBS += ../Assembly_Library/Src/String/
|
---|
| 56 | LIBS += ../Assembly_Library/Src/Time/
|
---|
| 57 | LIBS += ../Assembly_Library/Src/Util/
|
---|
| 58 | LIBS += ../XTIDE_Universal_BIOS/Inc/
|
---|
| 59 | HEADERS += $(LIBS)
|
---|
[3] | 60 |
|
---|
[88] | 61 |
|
---|
[3] | 62 | #################################################################
|
---|
| 63 | # Assembler preprocessor defines. #
|
---|
| 64 | #################################################################
|
---|
[132] | 65 | DEFINES = INCLUDE_MENU_LIBRARY EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[88] | 66 | DEFINES_XT = ELIMINATE_CGA_SNOW
|
---|
| 67 | DEFINES_XTPLUS = ELIMINATE_CGA_SNOW USE_186
|
---|
[3] | 68 | DEFINES_AT = USE_186 USE_286 USE_AT
|
---|
| 69 |
|
---|
| 70 |
|
---|
| 71 | ###################
|
---|
| 72 | # Other variables #
|
---|
| 73 | ###################
|
---|
| 74 |
|
---|
| 75 | # Add -D in front of every preprocessor define declaration
|
---|
| 76 | DEFS = $(DEFINES:%=-D%)
|
---|
| 77 | DEFS_XT = $(DEFINES_XT:%=-D%)
|
---|
| 78 | DEFS_XTPLUS = $(DEFINES_XTPLUS:%=-D%)
|
---|
| 79 | DEFS_AT = $(DEFINES_AT:%=-D%)
|
---|
| 80 |
|
---|
| 81 | # Add -I in front of all header directories
|
---|
| 82 | IHEADERS = $(HEADERS:%=-I%)
|
---|
| 83 |
|
---|
[145] | 84 | # Path + target file to be built
|
---|
[3] | 85 | TARGET = $(BUILD_DIR)/$(PROG)
|
---|
| 86 |
|
---|
| 87 |
|
---|
| 88 | #########################
|
---|
| 89 | # Compilers and linkers #
|
---|
| 90 | #########################
|
---|
| 91 |
|
---|
| 92 | # Make
|
---|
| 93 | MAKE = mingw32-make.exe
|
---|
| 94 |
|
---|
| 95 | # Assembler
|
---|
[80] | 96 | AS = nasm.exe
|
---|
[3] | 97 |
|
---|
| 98 | # use this command to erase files.
|
---|
| 99 | RM = -del /Q
|
---|
| 100 |
|
---|
| 101 |
|
---|
| 102 | #############################
|
---|
| 103 | # Compiler and linker flags #
|
---|
| 104 | #############################
|
---|
| 105 |
|
---|
| 106 | # Assembly compiler flags
|
---|
| 107 | ASFLAGS = -f bin # Produce binary object files
|
---|
| 108 | ASFLAGS += $(DEFS) # Preprocessor defines
|
---|
| 109 | ASFLAGS += $(IHEADERS) # Set header file directory paths
|
---|
| 110 | ASFLAGS += -Worphan-labels # Warn about labels without colon
|
---|
| 111 | ASFLAGS += -O9 # Optimize operands to their shortest forms
|
---|
| 112 |
|
---|
| 113 |
|
---|
| 114 | ############################################
|
---|
| 115 | # Build process. Actual work is done here. #
|
---|
| 116 | ############################################
|
---|
| 117 |
|
---|
| 118 | .PHONY: all at xtplus xt clean
|
---|
| 119 |
|
---|
| 120 | # Make clean debug and release versions
|
---|
[61] | 121 | all: clean at xtplus xt
|
---|
[145] | 122 | @echo All done!
|
---|
[3] | 123 |
|
---|
| 124 | at:
|
---|
[80] | 125 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -l"$(TARGET)_at.lst" -o"$(TARGET)_at.bin"
|
---|
[145] | 126 | @echo AT version "$(TARGET)_at.bin" built.
|
---|
[3] | 127 |
|
---|
| 128 | xtplus:
|
---|
[80] | 129 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS) -l"$(TARGET)_xtp.lst" -o"$(TARGET)_xtp.bin"
|
---|
[145] | 130 | @echo XT plus version "$(TARGET)_xtp.bin" built.
|
---|
[3] | 131 |
|
---|
| 132 | xt:
|
---|
[80] | 133 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -l"$(TARGET)_xt.lst" -o"$(TARGET)_xt.bin"
|
---|
[145] | 134 | @echo XT version "$(TARGET)_xt.bin" built.
|
---|
[3] | 135 |
|
---|
| 136 | clean:
|
---|
| 137 | @$(RM) $(BUILD_DIR)\*.*
|
---|
| 138 | @echo Deleted "(*.*)" from "$(BUILD_DIR)/"
|
---|