diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2019-10-06 15:53:52 +0100 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2019-10-06 15:53:52 +0100 |
| commit | e77b371fb0fc4e62fa727a340b2e322fa60ebcff (patch) | |
| tree | 78a278b63831a856e8d39bace88d12bb3a5a9b60 /Makefile | |
| parent | 64aa82592c6c2b043d8c62100d4ce110bf616c1e (diff) | |
| download | tinyOS-e77b371fb0fc4e62fa727a340b2e322fa60ebcff.tar.xz tinyOS-e77b371fb0fc4e62fa727a340b2e322fa60ebcff.zip | |
Add command parsing and echo commandadd-shell
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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: |