| 102 @echo "Compiling $<" |
102 @echo "Compiling $<" |
| 103 $(CC) -o $@ $(CFLAGS) -c $< |
103 $(CC) -o $@ $(CFLAGS) -c $< |
| 104 |
104 |
| 105 $(build_dir)/json$(OBJ_EXT): json.c cx/json.h cx/common.h cx/allocator.h \ |
105 $(build_dir)/json$(OBJ_EXT): json.c cx/json.h cx/common.h cx/allocator.h \ |
| 106 cx/string.h cx/buffer.h cx/array_list.h cx/list.h cx/collection.h \ |
106 cx/string.h cx/buffer.h cx/array_list.h cx/list.h cx/collection.h \ |
| 107 cx/iterator.h cx/compare.h |
107 cx/iterator.h cx/compare.h cx/map.h cx/hash_key.h cx/kv_list.h |
| 108 @echo "Compiling $<" |
108 @echo "Compiling $<" |
| 109 $(CC) -o $@ $(CFLAGS) -c $< |
109 $(CC) -o $@ $(CFLAGS) -c $< |
| 110 |
110 |
| 111 $(build_dir)/kv_list$(OBJ_EXT): kv_list.c cx/kv_list.h cx/common.h \ |
111 $(build_dir)/kv_list$(OBJ_EXT): kv_list.c cx/kv_list.h cx/common.h \ |
| 112 cx/list.h cx/collection.h cx/allocator.h cx/iterator.h cx/compare.h \ |
112 cx/list.h cx/collection.h cx/allocator.h cx/iterator.h cx/compare.h \ |