source: xtideuniversalbios/tags/Configurator_for_v1.1.5/makefile @ 625

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

Changes to Configurator v2:

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