aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Borner2019-09-21 12:12:17 +0200
committerMarvin Borner2019-09-21 12:14:03 +0200
commitf18d636a8a147a3e2a72318dc6ab2b0d3c7fd6e0 (patch)
tree622de1723722480e81a9f34f96e8a3b90f729df9
parentab431f761e9a0921a2e5b143d07819ddbbfead06 (diff)
Improved build process
-rw-r--r--Makefile3
-rwxr-xr-xbuild.sh6
2 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..2010495
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,3 @@
+all:
+ sh cross.sh
+ sh build.sh \ No newline at end of file
diff --git a/build.sh b/build.sh
index 1c7de3c..f09a705 100755
--- a/build.sh
+++ b/build.sh
@@ -9,7 +9,7 @@ rm -rf ./build/ ./iso/
mkdir ./build/
# Assemble ASM files
-nasm -f elf ./src/kernel/boot.asm -o ./build/boot.o
+nasm -f elf ./src/kernel/boot.asm -o ./build/boot.o || exit
# Make all C files
files=""
@@ -18,14 +18,14 @@ while read -r line; do
stripped=$(echo "${line}" | sed -r 's/\//_/g')
stripped=${stripped#??????}
stripped=${stripped%%?}o
- i686-elf-gcc -c ./"${line}" -o ./build/"${stripped}" -std=gnu99 -ffreestanding -O2 -Wall -Wextra
+ i686-elf-gcc -c ./"${line}" -o ./build/"${stripped}" -std=gnu99 -ffreestanding -O2 -Wall -Wextra || exit
files="${files} ./build/${stripped}"
done <./build/tmp
rm ./build/tmp
# shellcheck disable=SC2086
# Shellcheck suppression is needed because gcc would think that $files is one file
-i686-elf-gcc -T ./src/kernel/linker.ld -o ./build/melvix.bin -ffreestanding -O2 -nostdlib ./build/boot.o $files -lgcc
+i686-elf-gcc -T ./src/kernel/linker.ld -o ./build/melvix.bin -ffreestanding -O2 -nostdlib ./build/boot.o $files -lgcc || exit
# Testing
if grub-file --is-x86-multiboot ./build/melvix.bin; then