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):
|
---|
21 | SRC_ASM = Src/Main.asm
|
---|
22 |
|
---|
23 | # Program executable file name without extension:
|
---|
24 | PROG = xtidecfg
|
---|
25 | EXTENSION = com
|
---|
26 |
|
---|
27 |
|
---|
28 | #######################################
|
---|
29 | # Destination and include directories #
|
---|
30 | #######################################
|
---|
31 |
|
---|
32 | # Directory where binary file will be compiled to
|
---|
33 | BUILD_DIR = Build
|
---|
34 |
|
---|
35 | # Subdirectories where included files are:
|
---|
36 | HEADERS = Inc/
|
---|
37 | HEADERS += Inc/Help/
|
---|
38 | HEADERS += Src/
|
---|
39 | HEADERS += Src/Menupages/
|
---|
40 |
|
---|
41 | # Subdirectories where library files are:
|
---|
42 | LIBS = ../Assembly_Library/Inc/
|
---|
43 | LIBS += ../Assembly_Library/Src/
|
---|
44 | LIBS += ../Assembly_Library/Src/Display/
|
---|
45 | LIBS += ../Assembly_Library/Src/File/
|
---|
46 | LIBS += ../Assembly_Library/Src/Keyboard/
|
---|
47 | LIBS += ../Assembly_Library/Src/Menu/
|
---|
48 | LIBS += ../Assembly_Library/Src/Menu/Dialog/
|
---|
49 | LIBS += ../Assembly_Library/Src/String/
|
---|
50 | LIBS += ../Assembly_Library/Src/Time/
|
---|
51 | LIBS += ../Assembly_Library/Src/Util/
|
---|
52 | LIBS += ../XTIDE_Universal_BIOS/Inc/
|
---|
53 | HEADERS += $(LIBS)
|
---|
54 |
|
---|
55 |
|
---|
56 |
|
---|
57 | #################################################################
|
---|
58 | # Assembler preprocessor defines. #
|
---|
59 | #################################################################
|
---|
60 | DEFINES =
|
---|
61 | DEFINES_XT = ELIMINATE_CGA_SNOW
|
---|
62 | DEFINES_XTPLUS = USE_186 ELIMINATE_CGA_SNOW
|
---|
63 | DEFINES_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
|
---|
71 | DEFS = $(DEFINES:%=-D%)
|
---|
72 | DEFS_XT = $(DEFINES_XT:%=-D%)
|
---|
73 | DEFS_XTPLUS = $(DEFINES_XTPLUS:%=-D%)
|
---|
74 | DEFS_AT = $(DEFINES_AT:%=-D%)
|
---|
75 |
|
---|
76 | # Add -I in front of all header directories
|
---|
77 | IHEADERS = $(HEADERS:%=-I%)
|
---|
78 |
|
---|
79 | # Path + target file to be built
|
---|
80 | TARGET = $(BUILD_DIR)/$(PROG)
|
---|
81 |
|
---|
82 |
|
---|
83 | #########################
|
---|
84 | # Compilers and linkers #
|
---|
85 | #########################
|
---|
86 |
|
---|
87 | # Make
|
---|
88 | MAKE = mingw32-make.exe
|
---|
89 |
|
---|
90 | # Assembler
|
---|
91 | AS = nasm.exe
|
---|
92 |
|
---|
93 | # use this command to erase files.
|
---|
94 | RM = -del /Q
|
---|
95 |
|
---|
96 |
|
---|
97 | #############################
|
---|
98 | # Compiler and linker flags #
|
---|
99 | #############################
|
---|
100 |
|
---|
101 | # Assembly compiler flags
|
---|
102 | ASFLAGS = -f bin # Produce binary object files
|
---|
103 | ASFLAGS += $(DEFS) # Preprocessor defines
|
---|
104 | ASFLAGS += $(IHEADERS) # Set header file directory paths
|
---|
105 | ASFLAGS += -Worphan-labels # Warn about labels without colon
|
---|
106 | ASFLAGS += -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
|
---|
116 | all: clean xt
|
---|
117 | @echo All done!
|
---|
118 |
|
---|
119 | at:
|
---|
120 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -l"$(TARGET)_at.lst" -o"$(TARGET)_at.$(EXTENSION)"
|
---|
121 | @echo AT version "$(TARGET)_at.$(EXTENSION)" built.
|
---|
122 |
|
---|
123 | xtplus:
|
---|
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 |
|
---|
127 | xt:
|
---|
128 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -l"$(TARGET)_xt.lst" -o"$(TARGET).$(EXTENSION)"
|
---|
129 | @echo XT version "$(TARGET).$(EXTENSION)" built.
|
---|
130 |
|
---|
131 | clean:
|
---|
132 | @$(RM) $(BUILD_DIR)\*.*
|
---|
133 | @echo Deleted "(*.*)" from "$(BUILD_DIR)/"
|
---|
134 |
|
---|
135 | release: xt
|
---|
136 | @echo Compressing with UPX...
|
---|
137 | @upx -qq --8086 --ultra-brute $(TARGET).$(EXTENSION)
|
---|
138 | @echo Done! XT version is ready for release.
|
---|