# HG changeset patch # User Mike Becker # Date 1729348095 -7200 # Node ID 9b9385fcdfd5416cad8b45ea522c436a21fdd6a0 # Parent 312fb24c14de9c164a73f89fbebd8bec877566e9 add missing dependencies for test_properties.o diff -r 312fb24c14de -r 9b9385fcdfd5 tests/Makefile --- a/tests/Makefile Sat Oct 19 14:24:26 2024 +0200 +++ b/tests/Makefile Sat Oct 19 16:28:15 2024 +0200 @@ -105,9 +105,11 @@ $(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 + util_allocator.h ../src/cx/allocator.h ../src/cx/common.h \ + ../src/cx/properties.h ../src/cx/string.h ../src/cx/allocator.h \ + ../src/cx/map.h ../src/cx/collection.h ../src/cx/iterator.h \ + ../src/cx/compare.h ../src/cx/hash_key.h ../src/cx/array_list.h \ + ../src/cx/list.h ../src/cx/hash_map.h @echo "Compiling $<" $(CC) -o $@ $(CFLAGS) -c $<