diff --git a/Makefile b/Makefile index 25c0a2a86..5779e8440 100644 --- a/Makefile +++ b/Makefile @@ -472,7 +472,7 @@ ggml-mpi.o: ggml-mpi.c ggml-mpi.h endif # LLAMA_MPI GF_CC := $(CC) -include scripts/get_flags.mk +include scripts/get-flags.mk # combine build flags with cmdline overrides override CFLAGS := $(MK_CPPFLAGS) $(CPPFLAGS) $(MK_CFLAGS) $(GF_CFLAGS) $(CFLAGS) @@ -484,7 +484,7 @@ override LDFLAGS := $(MK_LDFLAGS) $(LDFLAGS) # identify CUDA host compiler ifdef LLAMA_CUBLAS GF_CC := $(NVCC) $(NVCCFLAGS) 2>/dev/null .c -Xcompiler -include scripts/get_flags.mk +include scripts/get-flags.mk CUDA_CXXFLAGS := $(GF_CXXFLAGS) endif diff --git a/scripts/get_flags.mk b/scripts/get-flags.mk similarity index 100% rename from scripts/get_flags.mk rename to scripts/get-flags.mk