diff options
author | aqua <aqua@iserlohn-fortress.net> | 2022-11-05 22:06:24 +0200 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-11-05 22:06:24 +0200 |
commit | 97176775f264efa8b30d5d89375a3c739ff6aa7d (patch) | |
tree | d29209ad9f6be3738599a8349874189111d812a5 /lib/Makefile | |
parent | Add sha512sum checksum to grub (diff) | |
download | kernel-97176775f264efa8b30d5d89375a3c739ff6aa7d.tar.xz |
makefile: replace ,SRCS with .SRCS
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index 8f27824..0da59de 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -2,7 +2,7 @@ include ../Makefile.config CCFLAGS += -I. -I.. -libk,SRCS = memcpy.c memset.c stdio/printf.c string/itoa.c +libk.SRCS = memcpy.c memset.c stdio/printf.c string/itoa.c include ../rules.mk |