--- a/src/Makefile Tue Nov 04 22:28:58 2025 +0100 +++ b/src/Makefile Sun Nov 30 22:22:12 2025 +0100 @@ -29,48 +29,48 @@ CFLAGS += -DVERSION='"$(VERSION)"' all: $(BUILD_DIR)/cline FORCE - echo "Build successful." + @echo "Build successful." install: $(BUILD_DIR)/cline FORCE cd .. && cp "build/cline" "$(bindir)/cline" - echo "Installed to: $(bindir)/cline" + @echo "Installed to: $(bindir)/cline" $(BUILD_DIR)/cline: $(OBJ) - echo "Linking executable..." + @echo "Linking executable..." $(CC) $(LDFLAGS) -o $@ $^ FORCE: $(BUILD_DIR)/arguments.o: arguments.c arguments.h stdinc.h string_list.h - echo "Compiling $<" + @echo "Compiling $<" $(CC) -o $@ $(CFLAGS) -c $< $(BUILD_DIR)/bfile_heuristics.o: bfile_heuristics.c bfile_heuristics.h \ stdinc.h - echo "Compiling $<" + @echo "Compiling $<" $(CC) -o $@ $(CFLAGS) -c $< $(BUILD_DIR)/cline.o: cline.c stdinc.h settings.h string_list.h \ bfile_heuristics.h regex_parser.h scanner.h arguments.h - echo "Compiling $<" + @echo "Compiling $<" $(CC) -o $@ $(CFLAGS) -c $< $(BUILD_DIR)/regex_parser.o: regex_parser.c regex_parser.h string_list.h \ stdinc.h - echo "Compiling $<" + @echo "Compiling $<" $(CC) -o $@ $(CFLAGS) -c $< $(BUILD_DIR)/scanner.o: scanner.c scanner.h stdinc.h settings.h \ string_list.h bfile_heuristics.h regex_parser.h - echo "Compiling $<" + @echo "Compiling $<" $(CC) -o $@ $(CFLAGS) -c $< $(BUILD_DIR)/settings.o: settings.c settings.h stdinc.h string_list.h \ bfile_heuristics.h regex_parser.h - echo "Compiling $<" + @echo "Compiling $<" $(CC) -o $@ $(CFLAGS) -c $< $(BUILD_DIR)/string_list.o: string_list.c string_list.h stdinc.h - echo "Compiling $<" + @echo "Compiling $<" $(CC) -o $@ $(CFLAGS) -c $<