diff -r eabfbe9e2952 -r 45da884269c8 src/Makefile --- a/src/Makefile Tue Oct 08 19:52:09 2024 +0200 +++ b/src/Makefile Thu Oct 10 18:40:27 2024 +0200 @@ -25,7 +25,7 @@ SRC = allocator.c array_list.c buffer.c compare.c hash_key.c hash_map.c \ iterator.c linked_list.c list.c map.c mempool.c printf.c string.c tree.c \ - utils.c + utils.c properties.c OBJ_EXT=.o OBJ=$(SRC:%.c=$(build_dir)/%$(OBJ_EXT)) @@ -125,6 +125,10 @@ @echo "Compiling $<" $(CC) -o $@ $(CFLAGS) -c $< +$(build_dir)/properties$(OBJ_EXT): properties.c cx/properties.h + @echo "Compiling $<" + $(CC) -o $@ $(CFLAGS) -c $< + $(build_dir)/string$(OBJ_EXT): string.c cx/string.h cx/common.h \ cx/allocator.h cx/utils.h @echo "Compiling $<"