rename unicodedata.{cpp,h} to unicode-data.{cpp,h}

This commit is contained in:
Jared Van Bortel 2024-03-26 10:52:33 -04:00
parent 0a0ef09aca
commit 87a6088ffe
7 changed files with 14 additions and 14 deletions

View file

@ -666,10 +666,10 @@ ggml-quants.o: ggml-quants.c ggml.h ggml-quants.h ggml-common.h
unicode.o: unicode.cpp unicode.h
$(CXX) $(CXXFLAGS) -c $< -o $@
unicodedata.o: unicodedata.cpp unicodedata.h
unicode-data.o: unicode-data.cpp unicode-data.h
$(CXX) $(CXXFLAGS) -c $< -o $@
OBJS += ggml-alloc.o ggml-backend.o ggml-quants.o unicode.o unicodedata.o
OBJS += ggml-alloc.o ggml-backend.o ggml-quants.o unicode.o unicode-data.o
llama.o: llama.cpp unicode.h ggml.h ggml-alloc.h ggml-backend.h ggml-cuda.h ggml-metal.h llama.h
$(CXX) $(CXXFLAGS) -c $< -o $@