aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2019-12-04 22:15:27 +0100
committerMarvin Borner2019-12-04 22:15:27 +0100
commit3e14c632b3b9c39d27693f2538f377fb52de193a (patch)
tree688b7e365560ca61485a54a4576a61982c8c5f29 /Makefile
parented3da12bb378d82878fff1d50e5e9e7af3d7265d (diff)
Fully working syscall interface
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index bd3753a..d354f89 100644
--- a/Makefile
+++ b/Makefile
@@ -36,8 +36,8 @@ build: clean
# Userspace
nasm -f elf ./src/userspace/start.asm -o ./build/user_start.o || exit; \
- i686-elf-gcc -c ./src/userspace/main.c -o ./build/user_main.o -I ./src/mlibc -std=gnu99 -ffreestanding -O3 -Wall -Wextra -Wno-unused-parameter || exit; \
- i686-elf-gcc -I ./src/mlibc -o ./build/user.o -std=gnu99 -ffreestanding -O2 -nostdlib ./build/user_start.o ./build/user_main.o || exit; \
+ i686-elf-gcc -c ./src/userspace/main.c -o ./build/user_main.o -I ./src/mlibc -I ./src/userspace -std=gnu99 -ffreestanding -O3 -Wall -Wextra -Wno-unused-parameter || exit; \
+ i686-elf-gcc -I ./src/mlibc -I ./src/userspace -o ./build/user.o -std=gnu99 -ffreestanding -O2 -nostdlib ./build/user_start.o ./build/user_main.o || exit; \
i686-elf-objcopy -O binary ./build/user.o ./build/user.bin; \
# Create ISO