source: xtideuniversalbios/tags/Assembly_Library_for_v2.0.0beta1/makefile

Last change on this file was 256, checked in by aitotat@…, 12 years ago

Changes to Assembly Library:

  • Added Precise Event Timer functions.
File size: 4.0 KB
Line 
1###############################################################################
2# Generic makefile for building BIOS binary file.                             #
3# v. 1.0.0 (28.7.2007 ... 27.6.2010)                                          #
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/LibraryTests.asm
22SRC_ASM = Src/TimerTest.asm
23#SRC_ASM = Src/LibSizeCheck.asm
24
25# Program executable file name without extension:
26PROG = test
27EXTENSION = com
28
29
30#######################################
31# Destination and include directories #
32#######################################
33
34# Directory where binary file will be compiled to
35BUILD_DIR = Build
36
37# Subdirectories where included files are:
38HEADERS = Inc/
39HEADERS += Src/
40HEADERS += Src/Display/
41HEADERS += Src/File/
42HEADERS += Src/Keyboard/
43HEADERS += Src/Menu/
44HEADERS += Src/Menu/Dialog/
45HEADERS += Src/String/
46HEADERS += Src/Time/
47HEADERS += Src/Util/
48
49
50#################################################################
51# Assembler preprocessor defines.                               #
52#################################################################
53DEFINES =
54DEFINES_XT = ELIMINATE_CGA_SNOW
55DEFINES_XTPLUS = USE_186 ELIMINATE_CGA_SNOW
56DEFINES_AT = USE_186 USE_286 USE_AT
57
58
59###################
60# Other variables #
61###################
62
63# Add -D in front of every preprocessor define declaration
64DEFS = $(DEFINES:%=-D%)
65DEFS_XT = $(DEFINES_XT:%=-D%)
66DEFS_XTPLUS = $(DEFINES_XTPLUS:%=-D%)
67DEFS_AT = $(DEFINES_AT:%=-D%)
68
69# Add -I in front of all header directories
70IHEADERS = $(HEADERS:%=-I%)
71
72# Path + target file to be built
73TARGET = $(BUILD_DIR)/$(PROG)
74
75
76#########################
77# Compilers and linkers #
78#########################
79
80# Make
81MAKE = mingw32-make.exe
82
83# Assembler
84AS = nasm.exe
85
86# use this command to erase files.
87RM = -del /Q
88
89
90#############################
91# Compiler and linker flags #
92#############################
93
94# Assembly compiler flags
95ASFLAGS = -f bin                # Produce binary object files
96ASFLAGS += $(DEFS)              # Preprocessor defines
97ASFLAGS += $(IHEADERS)          # Set header file directory paths
98ASFLAGS += -Worphan-labels      # Warn about labels without colon
99ASFLAGS += -O9                  # Optimize operands to their shortest forms
100
101
102############################################
103# Build process. Actual work is done here. #
104############################################
105
106.PHONY: all at xtplus xt clean
107
108# Make clean debug and release versions
109all: clean at xtplus xt
110    @echo All done!
111
112at:
113    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -l"$(TARGET)_at.lst" -o"$(TARGET)_at.$(EXTENSION)"
114    @echo AT version "$(TARGET)_at.$(EXTENSION)" built.
115
116xtplus:
117    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS) -l"$(TARGET)_xtp.lst" -o"$(TARGET)_xtp.$(EXTENSION)"
118    @echo XT plus version "$(TARGET)_xtp.$(EXTENSION)" built.
119
120xt:
121    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -l"$(TARGET)_xt.lst" -o"$(TARGET)_xt.$(EXTENSION)"
122    @echo XT version "$(TARGET)_xt.$(EXTENSION)" built.
123
124clean:
125    @$(RM) $(BUILD_DIR)\*.*
126    @echo Deleted "(*.*)" from "$(BUILD_DIR)/"
Note: See TracBrowser for help on using the repository browser.