source: xtideuniversalbios/trunk/Assembly_Library/makefile @ 149

Last change on this file since 149 was 149, checked in by aitotat, 13 years ago

Changes to Assembly Library:

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