| 123 $(build_dir)/printf$(OBJ_EXT): printf.c cx/printf.h cx/common.h \ |
123 $(build_dir)/printf$(OBJ_EXT): printf.c cx/printf.h cx/common.h \ |
| 124 cx/string.h cx/allocator.h |
124 cx/string.h cx/allocator.h |
| 125 @echo "Compiling $<" |
125 @echo "Compiling $<" |
| 126 $(CC) -o $@ $(CFLAGS) -c $< |
126 $(CC) -o $@ $(CFLAGS) -c $< |
| 127 |
127 |
| |
128 $(build_dir)/properties$(OBJ_EXT): properties.c cx/properties.h |
| |
129 @echo "Compiling $<" |
| |
130 $(CC) -o $@ $(CFLAGS) -c $< |
| |
131 |
| 128 $(build_dir)/string$(OBJ_EXT): string.c cx/string.h cx/common.h \ |
132 $(build_dir)/string$(OBJ_EXT): string.c cx/string.h cx/common.h \ |
| 129 cx/allocator.h cx/utils.h |
133 cx/allocator.h cx/utils.h |
| 130 @echo "Compiling $<" |
134 @echo "Compiling $<" |
| 131 $(CC) -o $@ $(CFLAGS) -c $< |
135 $(CC) -o $@ $(CFLAGS) -c $< |
| 132 |
136 |