diff options
author | Marvin Borner | 2019-12-04 22:15:27 +0100 |
---|---|---|
committer | Marvin Borner | 2019-12-04 22:15:27 +0100 |
commit | 3e14c632b3b9c39d27693f2538f377fb52de193a (patch) | |
tree | 688b7e365560ca61485a54a4576a61982c8c5f29 /Makefile | |
parent | ed3da12bb378d82878fff1d50e5e9e7af3d7265d (diff) |
Fully working syscall interface
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |