54 $(build_dir)/allocator$(OBJ_EXT): allocator.c cx/allocator.h cx/common.h |
54 $(build_dir)/allocator$(OBJ_EXT): allocator.c cx/allocator.h cx/common.h |
55 @echo "Compiling $<" |
55 @echo "Compiling $<" |
56 $(CC) -o $@ $(CFLAGS) -c $< |
56 $(CC) -o $@ $(CFLAGS) -c $< |
57 |
57 |
58 $(build_dir)/array_list$(OBJ_EXT): array_list.c cx/array_list.h cx/list.h \ |
58 $(build_dir)/array_list$(OBJ_EXT): array_list.c cx/array_list.h cx/list.h \ |
59 cx/common.h cx/collection.h cx/allocator.h cx/iterator.h |
59 cx/common.h cx/collection.h cx/allocator.h cx/iterator.h cx/compare.h |
60 @echo "Compiling $<" |
60 @echo "Compiling $<" |
61 $(CC) -o $@ $(CFLAGS) -c $< |
61 $(CC) -o $@ $(CFLAGS) -c $< |
62 |
62 |
63 $(build_dir)/buffer$(OBJ_EXT): buffer.c cx/buffer.h cx/common.h \ |
63 $(build_dir)/buffer$(OBJ_EXT): buffer.c cx/buffer.h cx/common.h \ |
64 cx/allocator.h cx/utils.h |
64 cx/allocator.h cx/utils.h |
79 @echo "Compiling $<" |
79 @echo "Compiling $<" |
80 $(CC) -o $@ $(CFLAGS) -c $< |
80 $(CC) -o $@ $(CFLAGS) -c $< |
81 |
81 |
82 $(build_dir)/linked_list$(OBJ_EXT): linked_list.c cx/linked_list.h \ |
82 $(build_dir)/linked_list$(OBJ_EXT): linked_list.c cx/linked_list.h \ |
83 cx/common.h cx/list.h cx/collection.h cx/allocator.h cx/iterator.h \ |
83 cx/common.h cx/list.h cx/collection.h cx/allocator.h cx/iterator.h \ |
84 cx/utils.h |
84 cx/utils.h cx/compare.h |
85 @echo "Compiling $<" |
85 @echo "Compiling $<" |
86 $(CC) -o $@ $(CFLAGS) -c $< |
86 $(CC) -o $@ $(CFLAGS) -c $< |
87 |
87 |
88 $(build_dir)/list$(OBJ_EXT): list.c cx/list.h cx/common.h cx/collection.h \ |
88 $(build_dir)/list$(OBJ_EXT): list.c cx/list.h cx/common.h cx/collection.h \ |
89 cx/allocator.h cx/iterator.h |
89 cx/allocator.h cx/iterator.h |