From 3e14c632b3b9c39d27693f2538f377fb52de193a Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 4 Dec 2019 22:15:27 +0100 Subject: Fully working syscall interface --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3