From 878cdffb3f69c780cb55f1fbb54747d9066a385a Mon Sep 17 00:00:00 2001 From: aqua Date: Sun, 12 Feb 2023 17:28:33 +0200 Subject: 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. --- lib/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/Makefile') 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 -- cgit v1.2.1