build things new utf8 things
- SHA
48e6d83936bf1adf76120d7315608b9d5023bc25- Parents
-
dcab4db - Tree
b3348e0
48e6d83
48e6d83936bf1adf76120d7315608b9d5023bc25dcab4db
b3348e0| Status | File | + | - |
|---|---|---|---|
| M |
Makefile
|
3 | 2 |
Makefilemodified@@ -40,7 +40,8 @@ endif | ||
| 40 | 40 | TARGET = fac |
| 41 | 41 | |
| 42 | 42 | # Source files (order matters for dependencies) |
| 43 | -SOURCES = src/buffer/text_buffer_module.f90 \ | |
| 43 | +SOURCES = src/utils/utf8_module.f90 \ | |
| 44 | + src/buffer/text_buffer_module.f90 \ | |
| 44 | 45 | src/clipboard/yank_stack_module.f90 \ |
| 45 | 46 | src/clipboard/clipboard_module.f90 \ |
| 46 | 47 | src/terminal/raw_mode_module.f90 \ |
@@ -80,6 +81,6 @@ $(TARGET): $(OBJECTS) $(C_OBJECTS) | ||
| 80 | 81 | $(CC) $(CFLAGS) -c $< -o $@ |
| 81 | 82 | |
| 82 | 83 | clean: |
| 83 | - rm -f $(OBJECTS) $(C_OBJECTS) $(TARGET) *.mod src/*/*.mod src/workspace/*.o | |
| 84 | + rm -f $(OBJECTS) $(C_OBJECTS) $(TARGET) *.mod src/*/*.mod src/workspace/*.o src/utils/*.o | |
| 84 | 85 | |
| 85 | 86 | .PHONY: all clean |