diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2019-10-06 18:39:36 +0100 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2019-10-06 18:39:36 +0100 |
| commit | 29478baf24532391cd94bd08d94cf867dee976e6 (patch) | |
| tree | 3127ae32572cd262c7283c6223b6e5712a07f91d /Makefile | |
| parent | e77b371fb0fc4e62fa727a340b2e322fa60ebcff (diff) | |
| download | tinyOS-29478baf24532391cd94bd08d94cf867dee976e6.tar.xz tinyOS-29478baf24532391cd94bd08d94cf867dee976e6.zip | |
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,6 @@ CC = gcc -CFLAGS = -m32 -std=c99 -fno-stack-protector +CFLAGS = -m32 -std=c99 -fno-stack-protector -Wno-builtin-declaration-mismatch default: build @@ -17,6 +17,8 @@ build: setup kernel/kernel.c kernel/global_descriptor_table.c kernel/gpu/text_mo $(CC) $(CFLAGS) -c os/shell/shell.c -o bin/shell.o $(CC) $(CFLAGS) -c os/stdlib/stdlib.c -o bin/stdlib.o $(CC) $(CFLAGS) -c os/commands/echo.c -o bin/echo.o + $(CC) $(CFLAGS) -c os/commands/files.c -o bin/files.o + $(CC) $(CFLAGS) -c os/filesystem/ramfs.c -o bin/ramfs.o ld -m elf_i386 -T link.ld -o bin/kernel.bin bin/*.o clean: |