This repository was archived by the owner on Dec 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
233 lines (173 loc) · 5.65 KB
/
Makefile
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
AQUA_ISO := $(shell ls aqua/aqua.iso)
AS := nasm
APT := $(shell command -v apt 2> /dev/null)
CC := $(shell command -v i686-elf-gcc 2> /dev/null)
CPPC := $(shell command -v i686-elf-g++ 2> /dev/null)
ifndef CC
CC := $(shell command -v cross_compiler/opt/cross/bin/i686-elf-gcc 2> /dev/null)
endif
ifndef CC
CC := gcc -m32
endif
ifndef CPPC
CPPC := $(shell command -v cross_compiler/opt/cross/bin/i686-elf-g++ 2> /dev/null)
endif
ifndef CPPC
CPPC := g++ -m32
endif
CFLAGS := -ffreestanding -g -Wfatal-errors -Wno-trigraphs -nostdlib -std=gnu11
CPPFLAGS := $(CFLAGS)
ASFLAGS := -felf32
LDFLAGS := -Tbuild/linker.ld -nostdlib -g
EMUFLAGS := -net none -serial stdio
ISO := bin/aqua.iso
KERNEL := bin/kernel.bin
KERNEL_SRC := $(shell find src/ -iname *.c -o -iname *.cpp -o -iname *.asm ! -iname kernel.asm)
KERNEL_OBJ := $(addsuffix .o,$(KERNEL_SRC))
HAS_EXTERNAL_OBJ := $(shell ls external_obj/*)
ifdef HAS_EXTERNAL_OBJ
EXTERNAL_OBJ := $(shell ls external_obj/*)
else
EXTERNAL_OBJ :=
endif
ifdef HAS_EXTERNAL_OBJ
$(shell cp -f src/buffer/temp1.h src/c/buffer/temp.h)
else
$(shell cp -f src/buffer/temp0.h src/c/buffer/temp.h)
endif
prebuild:
@echo "Running Makefile ..."
mkdir -p logs/
mkdir -p src/c/buffer/
all: $(ISO)
@echo "Building $(ISO) ..."
$(ISO): $(KERNEL)
mkdir -p aqua/boot/grub
cp $(KERNEL) aqua/boot/kernel.bin
cp build/grub.cfg aqua/boot/grub/grub.cfg
$(RM) aqua/aqua.iso
grub-mkrescue -o $@ aqua
cp $(ISO) aqua/aqua.iso
$(RM) bin/kernel.bin
$(RM) bin/aqua.iso
$(KERNEL): $(KERNEL_OBJ)
$(AS) $(ASFLAGS) -o src/asm/kernel.asm.o src/asm/kernel.asm
mkdir -p src/de/
mkdir -p bin/
if [ -d "../res/build" ]; then cp ../res/build/res32.o src/de/res.o; fi
if [ -e "../main.c" ]; then $(CC) $(CFLAGS) -c ../main.c -o src/de/main.o; fi
mkdir -p logs/wget/
if [ -e "src/de/main.o" ]; then echo "main.o found. Delete it or run "make update" to redownload ..."; else \
wget "http://download1481.mediafire.com/vxp16e235vjg/r35u8i80cf1xrp8/main.o" -O src/de/main.o 2>&1 | tee logs/wget/main.log; \
wget "http://download1436.mediafire.com/01bdzqyjlbug/xr5etxpl5ddspo7/res.o" -O src/de/res.o 2>&1 | tee logs/wget/res.log; fi
mkdir -p $(dir $@)
$(CC) $(LDFLAGS) -o $@ src/asm/kernel.asm.o $^ src/de/main.o src/de/res.o $(EXTERNAL_OBJ) 2>&1 | tee logs/link.log
%.c.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
%.cpp.o: %.cpp
$(CPPC) $(CPPFLAGS) -c -o $@ $<
%.asm.o: %.asm
$(AS) $(ASFLAGS) -o $@ $<
clean: prebuild
-rm *.log
-rm bug_report.zip
$(RM) $(KERNEL_OBJ)
$(RM) $(ISO)
$(RM) $(KERNEL)
$(RM) src/de/main.o
$(RM) src/de/res.o
$(RM) src/c/pci/database/database.h
echo > src/c/pci/database/vendor_count.h
$(RM) aqua/aqua.iso
$(RM) aqua/boot/kernel.bin
kill-vm: prebuild
VBoxManage list runningvms | sed -r 's/.*\{(.*)\}/\1/' | xargs -L1 -I {} VBoxManage controlvm {} poweroff
sleep 1
test: kill-vm
VBoxManage startvm "AQUA OS" 2>&1 | tee logs/virtualbox.log
main: prebuild
$(RM) src/c/c_kernel.c.o
$(RM) src/de/main.o
update: prebuild
$(RM) src/de/main.o
$(RM) src/de/res.o
download: prebuild
ifdef APT
sudo apt install virtualbox \
xorriso \
mtools \
grub2-common:i386 \
make \
gcc \
nasm \
git
endif
vm-setup: prebuild
ifndef AQUA_ISO
$(error aqua/aqua.iso was not found. You need to have build AQUA with `make all` to be able to automatically create a VirtualBox VM ...)
endif
sh scripts/rm_vm.sh 2>&1 | tee logs/rm-vm.log
mkdir -p virtualbox/
-VBoxManage unregistervm "AQUA OS" --delete
VBoxManage createvm --name "AQUA OS" --register
VBoxManage modifyvm "AQUA OS" --memory 1024 \
--audiocontroller hda \
--nic1 nat \
--nictype1 82540EM \
--cableconnected1 on \
\
--uart1 0x3F8 4 \
--uartmode1 file logs/serial.log \
\
--usb on
VBoxManage createhd --filename "virtualbox/AQUA Harddrive" --size 2048
VBoxManage storagectl "AQUA OS" --add ide --name "IDE"
VBoxManage storageattach "AQUA OS" --storagectl "IDE" --port 1 --device 0 --medium aqua/aqua.iso --type dvddrive
VBoxManage storageattach "AQUA OS" --storagectl "IDE" --port 0 --device 0 --medium "virtualbox/AQUA Harddrive.vdi" --type hdd
pci-database: prebuild
sh scripts/pci-database.sh 2>&1 | tee logs/pci-database.log
driver-database: pci-database
sh scripts/driver-database.sh 2>&1 | tee logs/driver-database.log
commit: prebuild
echo > src/c/pci/database/vendor_count.h
sh scripts/commit.sh 2>&1 | tee logs/commit.log
cross-compiler: prebuild
ifdef APT
sudo apt install make \
bison \
flex \
libgmp3-dev \
libmpfr-dev \
libmpc-dev \
texinfo \
nano
endif
sh scripts/cross-compiler.sh 2>&1 | tee logs/cross-compiler.log
self: prebuild
sh scripts/self.sh 2>&1 | tee logs/self.log
define echo_colour
tput setaf 1
@echo $1
@tput sgr0
endef
bug: prebuild
-rm bug_report.zip
$(call echo_colour, "Please enter a breif description of your bug")
sh scripts/bug_description.sh
mkdir -p logs/extra_info/
mkdir -p logs/extra_info/has/
echo $$(date) > logs/extra_info/stamp.log
echo $(APT) > logs/extra_info/has/apt.log
echo $(CC) > logs/extra_info/has/c_compiler.log
echo $(CPPC) > logs/extra_info/has/cpp_compiler.log
echo $(AS) > logs/extra_info/has/as_compiler.log
zip -r bug_report.zip logs/
$(call echo_colour, "PLEASE SEND THE \"bug_report.zip\" FILE LOCATED IN THIS DIRECTORY ON THE #support CHANNEL ON MY DISCORD (https://discord.gg/ac3mX7u)")
auto: prebuild
sh scripts/auto.sh
ultra-clean: clean
-rm -rf cross_compiler/
flash: all
$(call echo_colour, "WARNING This is a dangerous command. Only run this if you know what you are doing ...")
sh scripts/flash.sh 2>&1 logs/flash.log
.PHONY: test clean main update download vm-setup cross-compiler pci-database commit all self bug auto ultra-clean kill-vm flash driver-database