diff -r b1696d0d598b -r 189756516eaa tests/Makefile --- a/tests/Makefile Tue Aug 26 21:14:17 2025 +0200 +++ b/tests/Makefile Tue Aug 26 21:55:19 2025 +0200 @@ -31,6 +31,7 @@ test_string.c test_buffer.c \ test_hash_key.c test_hash_map.c \ test_iterator.c test_list.c test_tree.c \ + test_kv_list.c \ test_properties.c test_json.c \ test_printf.c test_streams.c \ test_mempool.c \ @@ -96,11 +97,20 @@ @echo "Compiling $<" $(CC) -o $@ $(CFLAGS) -I../src -c $< +$(TEST_DIR)/test_kv_list$(OBJ_EXT): test_kv_list.c ../src/cx/test.h \ + ../src/cx/common.h util_allocator.h ../src/cx/allocator.h \ + ../src/cx/kv_list.h ../src/cx/list.h ../src/cx/collection.h \ + ../src/cx/allocator.h ../src/cx/iterator.h ../src/cx/compare.h \ + ../src/cx/map.h ../src/cx/string.h ../src/cx/hash_key.h + @echo "Compiling $<" + $(CC) -o $@ $(CFLAGS) -I../src -c $< + $(TEST_DIR)/test_list$(OBJ_EXT): test_list.c ../src/cx/test.h \ ../src/cx/common.h util_allocator.h ../src/cx/allocator.h \ ../src/cx/compare.h ../src/cx/array_list.h ../src/cx/list.h \ ../src/cx/collection.h ../src/cx/allocator.h ../src/cx/iterator.h \ - ../src/cx/compare.h ../src/cx/linked_list.h + ../src/cx/compare.h ../src/cx/linked_list.h ../src/cx/kv_list.h \ + ../src/cx/map.h ../src/cx/string.h ../src/cx/hash_key.h @echo "Compiling $<" $(CC) -o $@ $(CFLAGS) -I../src -c $<