diff options
author | aqua <aqua@iserlohn-fortress.net> | 2023-02-12 17:28:33 +0200 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2023-02-12 17:28:33 +0200 |
commit | 878cdffb3f69c780cb55f1fbb54747d9066a385a (patch) | |
tree | cd8bb7352bdb6d14ed20f5aa2d3d0e649f0f0427 /lib/Makefile | |
parent | Make shadowing variables an error (diff) | |
download | kernel-878cdffb3f69c780cb55f1fbb54747d9066a385a.tar.xz |
Generate dependency files for source code
Use the compiler to generate dependency files for all C, C++ and .S
assembly source code files. These are included in the makefiles where
the files are used.
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index 385e5ba..cace677 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -6,10 +6,10 @@ libk.SRCS = \ stdlib/memcpy.c stdlib/memset.c stdlib/linked_list_allocator.c \ string/itoa.c -TESTS += tst/test_endian_little tst/test_mem tst/test_string tst/test_linked_list_allocator +TESTS += tst/endian_little tst/mem tst/string tst/linked_list_allocator blake2.SRCS = blake2/blake2s.c -TESTS += tst/test_blake2s_selftest +TESTS += tst/blake2s_selftest include ../rules.mk |