aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2019-11-30 21:07:22 +0100
committerMarvin Borner2019-11-30 21:07:22 +0100
commit50f949d994c33ab23d63bdb9e8a438560ab0b4c4 (patch)
tree35089087979bd8cee4693c71264b1c537336e4dd /Makefile
parentac947d45c288f62e927895afe7cd6a722ffdd8f8 (diff)
Working userspace!
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d155efc..0d5d541 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@ build: clean
nasm -f elf ./src/kernel/boot.asm -o ./build/boot.o || exit; \
# Make all C files
- find ./src/kernel/ ./src/userspace/ ./src/mlibc/ -name \*.c >./build/tmp; \
+ find ./src/kernel/ ./src/mlibc/ -name \*.c >./build/tmp; \
while read -r line; do \
stripped=$$(echo "$${line}" | sed -r 's/\//_/g'); \
stripped=$${stripped#??????}; \
@@ -40,6 +40,7 @@ build: clean
nasm ./src/bootloader/cd.asm -f bin -o ./iso/boot/cd.bin || exit; \
nasm ./src/bootloader/hdd1.asm -f bin -o ./iso/boot/hdd1.bin || exit; \
nasm ./src/bootloader/hdd2.asm -f bin -o ./iso/boot/hdd2.bin || exit; \
+ nasm ./src/userspace/main.asm -f bin -o ./iso/user.bin || exit; \
cp ./build/font.bin ./iso/font.bin || exit; \
genisoimage -quiet -input-charset utf-8 -no-emul-boot -b boot/cd.bin -o ./build/melvix.iso ./iso;