diff -r 45da884269c8 -r 3c90dfc35f06 tests/Makefile --- a/tests/Makefile Thu Oct 10 18:40:27 2024 +0200 +++ b/tests/Makefile Sat Oct 12 19:34:19 2024 +0200 @@ -29,7 +29,7 @@ SRC = util_allocator.c test_utils.c test_hash_key.c test_allocator.c \ test_compare.c test_string.c test_buffer.c test_iterator.c \ - test_list.c test_tree.c test_hash_map.c \ + test_list.c test_tree.c test_hash_map.c test_properties.c \ test_printf.c test_mempool.c ucxtest.c OBJ_EXT=.o @@ -104,6 +104,13 @@ @echo "Compiling $<" $(CC) -o $@ $(CFLAGS) -c $< +$(TEST_DIR)/test_properties$(OBJ_EXT): test_properties.c ../src/cx/test.h \ + ../src/cx/properties.h ../src/cx/common.h ../src/cx/string.h \ + ../src/cx/allocator.h ../src/cx/array_list.h ../src/cx/list.h \ + ../src/cx/collection.h ../src/cx/iterator.h ../src/cx/compare.h + @echo "Compiling $<" + $(CC) -o $@ $(CFLAGS) -c $< + $(TEST_DIR)/test_string$(OBJ_EXT): test_string.c ../src/cx/test.h \ util_allocator.h ../src/cx/allocator.h ../src/cx/common.h \ ../src/cx/string.h ../src/cx/allocator.h