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