add export-lora build dependency to llama

because it depends on common, which depends on llama
This commit is contained in:
xaedes 2023-09-22 20:20:13 +02:00
parent 904c19bebd
commit 758c46cf7d
No known key found for this signature in database
GPG key ID: 30030EDD817EA2B1

View file

@ -561,7 +561,7 @@ beam-search: examples/beam-search/beam-search.cpp build-info.h ggml.o llama.o co
finetune: examples/finetune/finetune.cpp build-info.h ggml.o llama.o common.o train.o $(OBJS)
$(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS)
export-lora: examples/export-lora/export-lora.cpp build-info.h ggml.o common.o $(OBJS)
export-lora: examples/export-lora/export-lora.cpp build-info.h ggml.o llama.o common.o $(OBJS)
$(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS)
speculative: examples/speculative/speculative.cpp build-info.h ggml.o llama.o common.o grammar-parser.o $(OBJS)