src/Makefile

changeset 962
cd418898af5c
parent 958
c9033d30a9f6
child 963
2f601274bbac
--- a/src/Makefile	Thu Oct 31 14:39:05 2024 +0100
+++ b/src/Makefile	Thu Oct 31 14:54:44 2024 +0100
@@ -91,7 +91,7 @@
 
 $(build_dir)/hash_map$(OBJ_EXT): hash_map.c cx/hash_map.h cx/map.h \
  cx/common.h cx/collection.h cx/allocator.h cx/iterator.h cx/compare.h \
- cx/string.h cx/hash_key.h cx/utils.h
+ cx/string.h cx/hash_key.h
 	@echo "Compiling $<"
 	$(CC) -o $@ $(CFLAGS) -c $<
 
@@ -107,7 +107,7 @@
 
 $(build_dir)/linked_list$(OBJ_EXT): linked_list.c cx/linked_list.h \
  cx/common.h cx/list.h cx/collection.h cx/allocator.h cx/iterator.h \
- cx/compare.h cx/utils.h cx/compare.h
+ cx/compare.h cx/compare.h
 	@echo "Compiling $<"
 	$(CC) -o $@ $(CFLAGS) -c $<
 
@@ -138,7 +138,7 @@
 	$(CC) -o $@ $(CFLAGS) -c $<
 
 $(build_dir)/string$(OBJ_EXT): string.c cx/string.h cx/common.h \
- cx/allocator.h cx/utils.h
+ cx/allocator.h
 	@echo "Compiling $<"
 	$(CC) -o $@ $(CFLAGS) -c $<
 

mercurial