fortrangoingonforty/facsimile / 48e6d83

Browse files

build things new utf8 things

Authored by espadonne
SHA
48e6d83936bf1adf76120d7315608b9d5023bc25
Parents
dcab4db
Tree
b3348e0

1 changed file

StatusFile+-
M Makefile 3 2
Makefilemodified
@@ -40,7 +40,8 @@ endif
4040
 TARGET = fac
4141
 
4242
 # 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 \
4445
           src/clipboard/yank_stack_module.f90 \
4546
           src/clipboard/clipboard_module.f90 \
4647
           src/terminal/raw_mode_module.f90 \
@@ -80,6 +81,6 @@ $(TARGET): $(OBJECTS) $(C_OBJECTS)
8081
 	$(CC) $(CFLAGS) -c $< -o $@
8182
 
8283
 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
8485
 
8586
 .PHONY: all clean