diff options
author | Kerfuffle <44031344+KerfuffleV2@users.noreply.github.com> | 2023-03-23 05:41:32 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-23 12:41:32 +0100 |
commit | a140219e81cfb80356438112cd2290d701b282bb (patch) | |
tree | d80c082213e944a4ff31a2cd51b7b70acc2a8d96 | |
parent | 8a3e5ef801339e57b9b0449220e9ffb11a6648e2 (diff) |
Fix Makefile echo escape codes (by removing them). (#418)
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -231,7 +231,9 @@ clean: main: main.cpp ggml.o llama.o utils.o $(CXX) $(CXXFLAGS) main.cpp ggml.o llama.o utils.o -o main $(LDFLAGS) - @echo "\x1b[36mrun ./main -h for help\x1b[0m" + @echo + @echo '==== Run ./main -h for help. ====' + @echo quantize: quantize.cpp ggml.o llama.o utils.o $(CXX) $(CXXFLAGS) quantize.cpp ggml.o llama.o utils.o -o quantize $(LDFLAGS) |