aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJames Barnett <noreply@jamesbarnett.xyz>2019-10-06 15:53:52 +0100
committerJames Barnett <noreply@jamesbarnett.xyz>2019-10-06 15:53:52 +0100
commite77b371fb0fc4e62fa727a340b2e322fa60ebcff (patch)
tree78a278b63831a856e8d39bace88d12bb3a5a9b60 /Makefile
parent64aa82592c6c2b043d8c62100d4ce110bf616c1e (diff)
downloadtinyOS-e77b371fb0fc4e62fa727a340b2e322fa60ebcff.tar.xz
tinyOS-e77b371fb0fc4e62fa727a340b2e322fa60ebcff.zip
Add command parsing and echo commandadd-shell
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index a5d0449..a0ae7a6 100644
--- a/Makefile
+++ b/Makefile
@@ -16,6 +16,7 @@ build: setup kernel/kernel.c kernel/global_descriptor_table.c kernel/gpu/text_mo
$(CC) $(CFLAGS) -c os/main.c -o bin/main.o
$(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
ld -m elf_i386 -T link.ld -o bin/kernel.bin bin/*.o
clean: