diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2015-11-04 09:06:27 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2015-11-04 09:06:27 +0100 |
commit | 40390ebbd0c3e7363fec85e2c5ecd33fd3c36a63 (patch) | |
tree | 2a47786a1ed6b58e3f2cdc241a1322409671b7d1 /kernel/Makefile | |
parent | 53201e79cf34b288083c2e7e7fe95e9fe58fea0f (diff) | |
download | jeyzuos-40390ebbd0c3e7363fec85e2c5ecd33fd3c36a63.zip jeyzuos-40390ebbd0c3e7363fec85e2c5ecd33fd3c36a63.tar.gz |
kernel: add stdlib.[ch]
Diffstat (limited to 'kernel/Makefile')
-rw-r--r-- | kernel/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index 7250696..431c01a 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -1,7 +1,7 @@ all: kernel.elf -OBJS=entry.o tty.o -HEADERS=tty.h +OBJS=entry.o stdlib.o tty.o +HEADERS=stdlib.h tty.h .SUFFIXES: .asm @@ -20,6 +20,8 @@ kernel.elf: kernel.o $(OBJS) $(HEADERS) entry.o: entry.asm +stdlib.o: stdlib.c stdlib.h + tty.o: tty.c tty.h |