-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile.gen
199 lines (148 loc) · 4.62 KB
/
makefile.gen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
#export GDK=w:/sgdk
#export GDK_WIN=w:/sgdk
BIN= $(GDK)/bin
LIB= $(GDK)/lib
LIBSRC= $(GDK)/src
LIBRES= $(GDK)/res
LIBINCLUDE= $(GDK)/inc
SRC= src
RES= res
INCLUDE= inc
SHELL= $(BIN)/sh
RM= $(BIN)/rm
CP= $(BIN)/cp
CC= $(BIN)/gcc
LD= $(BIN)/ld
NM= $(BIN)/nm
JAVA= java
ECHO= echo
OBJCPY= $(BIN)/objcopy
ASMZ80= $(BIN)/sjasm
MACCER= $(BIN)/mac68k
SIZEBND= $(BIN)/sizebnd
BINTOS= $(BIN)/bintos
RESCOMP= $(JAVA) -jar $(BIN)/rescomp.jar
MKDIR= $(BIN)/mkdir
SRC_C= $(wildcard *.c)
SRC_C+= $(wildcard $(SRC)/*.c)
SRC_C+= $(wildcard $(SRC)/*/*.c)
SRC_C+= $(wildcard $(SRC)/*/*/*.c)
SRC_C:= $(filter-out $(SRC)/boot/rom_head.c,$(SRC_C))
SRC_S= $(wildcard *.s)
SRC_S+= $(wildcard $(SRC)/*.s)
SRC_S+= $(wildcard $(SRC)/*/*.s)
SRC_S+= $(wildcard $(SRC)/*/*/*.s)
SRC_S:= $(filter-out $(SRC)/boot/sega.s,$(SRC_S))
SRC_ASM= $(wildcard *.asm)
SRC_ASM+= $(wildcard $(SRC)/*.asm)
SRC_ASM+= $(wildcard $(SRC)/*/*.asm)
SRC_ASM+= $(wildcard $(SRC)/*/*/*.asm)
SRC_S80= $(wildcard *.s80)
SRC_S80+= $(wildcard $(SRC)/*.s80)
SRC_S80+= $(wildcard $(SRC)/*/*.s80)
SRC_S80+= $(wildcard $(SRC)/*/*/*.s80)
RES_C= $(wildcard $(RES)/*.c)
RES_S= $(wildcard $(RES)/*.s)
RES_RES= $(wildcard *.res)
RES_RES+= $(wildcard $(RES)/*.res)
RES_RS= $(RES_RES:.res=.rs)
RES_H= $(RES_RES:.res=.h)
RES_DEP= $(RES_RES:.res=.d)
RES_DEPS= $(addprefix out/, $(RES_DEP))
OBJ= $(RES_RES:.res=.o)
OBJ+= $(RES_S:.s=.o)
OBJ+= $(RES_C:.c=.o)
OBJ+= $(SRC_S80:.s80=.o)
OBJ+= $(SRC_ASM:.asm=.o)
OBJ+= $(SRC_S:.s=.o)
OBJ+= $(SRC_C:.c=.o)
OBJS= $(addprefix out/, $(OBJ))
DEPS= $(OBJS:.o=.d)
#-include $(DEPS)
LST= $(SRC_C:.c=.lst)
LSTS= $(addprefix out/, $(LST))
INCS= -I$(INCLUDE) -I$(SRC) -I$(RES) -I$(LIBINCLUDE) -I$(LIBRES)
DEFAULT_FLAGS= -m68000 -Wall -Wextra -Wno-shift-negative-value -Wno-main -Wno-unused-parameter -fno-builtin $(INCS) -B$(BIN)
FLAGSZ80= -i$(SRC) -i$(INCLUDE) -i$(RES) -i$(LIBSRC) -i$(LIBINCLUDE)
#release: FLAGS= $(DEFAULT_FLAGS) -Os -fomit-frame-pointer -fuse-linker-plugin -flto
release: FLAGS= $(DEFAULT_FLAGS) -O3 -fuse-linker-plugin -fno-web -fno-gcse -fno-unit-at-a-time -fomit-frame-pointer -flto
release: LIBMD= $(LIB)/libmd.a
release: pre-build out/rom.bin out/symbol.txt
#release: $(info $$var is [${SRC_C}])
debug: FLAGS= $(DEFAULT_FLAGS) -O1 -ggdb -DDEBUG=1
debug: LIBMD= $(LIB)/libmd_debug.a
debug: pre-build out/rom.bin out/rom.out out/symbol.txt
asm: FLAGS= $(DEFAULT_FLAGS) -O3 -fuse-linker-plugin -fno-web -fno-gcse -fno-unit-at-a-time -fomit-frame-pointer -S
asm: pre-build $(LSTS)
all: release
default: release
Default: release
Debug: debug
Release: release
Asm: asm
.PHONY: clean
cleantmp:
$(RM) -f $(RES_RS)
cleandep:
$(RM) -f $(DEPS)
cleanlst:
$(RM) -f $(LSTS)
cleanres: cleantmp
$(RM) -f $(RES_H) $(RES_DEP) $(RES_DEPS)
cleanobj:
$(RM) -f $(OBJS) out/sega.o out/rom_head.bin out/rom_head.o out/rom.out
clean: cleanobj cleanres cleanlst cleandep
$(RM) -f out.lst out/cmd_ out/symbol.txt out/rom.nm out/rom.wch out/rom.bin
cleanrelease: clean
cleandebug: clean
cleanasm: cleanlst
cleandefault: clean
cleanDefault: clean
cleanRelease: cleanrelease
cleanDebug: cleandebug
cleanAsm: cleanasm
pre-build:
$(MKDIR) -p $(SRC)/boot
$(MKDIR) -p out
out/rom.bin: out/rom.out
$(OBJCPY) -O binary out/rom.out out/rom.bin
$(SIZEBND) out/rom.bin -sizealign 131072
out/symbol.txt: out/rom.out
$(NM) --plugin=liblto_plugin-0.dll -n out/rom.out > out/symbol.txt
out/rom.out: out/sega.o out/cmd_ $(LIBMD)
$(CC) -B$(BIN) -n -T $(GDK)/md.ld -nostdlib out/sega.o @out/cmd_ $(LIBMD) $(LIB)/libgcc.a -o out/rom.out -Wl,--gc-sections
$(RM) out/cmd_
out/cmd_: $(OBJS)
$(ECHO) "$(OBJS)" > out/cmd_
out/sega.o: $(SRC)/boot/sega.s out/rom_head.bin
$(CC) -x assembler-with-cpp $(DEFAULT_FLAGS) -c $(SRC)/boot/sega.s -o $@
out/rom_head.bin: out/rom_head.o
$(LD) -T $(GDK)/md.ld -nostdlib --oformat binary -o $@ $<
out/rom_head.o: $(SRC)/boot/rom_head.c
$(CC) $(DEFAULT_FLAGS) -c $< -o $@
$(SRC)/boot/sega.s: $(LIBSRC)/boot/sega.s
$(CP) $< $@
$(SRC)/boot/rom_head.c: $(LIBSRC)/boot/rom_head.c
$(CP) $< $@
out/%.lst: %.c
$(MKDIR) -p $(dir $@)
$(CC) $(FLAGS) -c $< -o $@
out/%.o: %.c
$(MKDIR) -p $(dir $@)
$(CC) $(FLAGS) -MMD -c $< -o $@
out/%.o: %.s
$(MKDIR) -p $(dir $@)
$(CC) -x assembler-with-cpp $(FLAGS) -MMD -c $< -o $@
out/%.o: %.rs
$(MKDIR) -p $(dir $@)
$(CC) -x assembler-with-cpp $(FLAGS) -c $*.rs -o $@
$(CP) $*.d out/$*.d
$(RM) $*.d
%.rs: %.res
$(RESCOMP) $*.res $*.rs -dep out/$*.o
%.s: %.asm
$(MACCER) -o $@ $<
%.o80: %.s80
$(ASMZ80) $(FLAGSZ80) $< $@ out.lst
%.s: %.o80
$(BINTOS) $<