source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS_Configurator_v2/makefile @ 145

Last change on this file since 145 was 145, checked in by krille_n_@…, 13 years ago

Minor size optimizations to all parts of the project (even the old Configurator).
Also added a new 'release' option to the makefiles of both versions of the Configurator. It invokes UPX and makes the Configurator programs ridiculously tiny.

File size: 4.4 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 built
80TARGET = $(BUILD_DIR)/$(PROG)
81
82
83#########################
84# Compilers and linkers #
85#########################
86
87# Make
88MAKE = mingw32-make.exe
89
90# Assembler
91AS = nasm.exe
92
93# use this command to erase files.
94RM = -del /Q
95
96
97#############################
98# Compiler and linker flags #
99#############################
100
101# Assembly compiler flags
102ASFLAGS = -f bin                # Produce binary object files
103ASFLAGS += $(DEFS)              # Preprocessor defines
104ASFLAGS += $(IHEADERS)          # Set header file directory paths
105ASFLAGS += -Worphan-labels      # Warn about labels without colon
106ASFLAGS += -O9                  # Optimize operands to their shortest forms
107
108
109############################################
110# Build process. Actual work is done here. #
111############################################
112
113.PHONY: all at xtplus xt clean release
114
115# Make clean debug and release versions
116all: clean xt
117    @echo All done!
118
119at:
120    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -l"$(TARGET)_at.lst" -o"$(TARGET)_at.$(EXTENSION)"
121    @echo AT version "$(TARGET)_at.$(EXTENSION)" built.
122
123xtplus:
124    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS) -l"$(TARGET)_xtp.lst" -o"$(TARGET)_xtp.$(EXTENSION)"
125    @echo XT plus version "$(TARGET)_xtp.$(EXTENSION)" built.
126
127xt:
128    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -l"$(TARGET)_xt.lst" -o"$(TARGET).$(EXTENSION)"
129    @echo XT version "$(TARGET).$(EXTENSION)" built.
130
131clean:
132    @$(RM) $(BUILD_DIR)\*.*
133    @echo Deleted "(*.*)" from "$(BUILD_DIR)/"
134
135release: xt
136    @echo Compressing with UPX...
137    @upx -qq --8086 --ultra-brute $(TARGET).$(EXTENSION)
138    @echo Done! XT version is ready for release.
Note: See TracBrowser for help on using the repository browser.