From e2990ff4696e2e14e2ed2c83943b0d5a080ac1bc Mon Sep 17 00:00:00 2001 From: KerfuffleV2 Date: Thu, 2 Nov 2023 04:40:49 -0600 Subject: [PATCH] Fix batched-bench directly depending on common.o --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ab1f61263..97cdcd565 100644 --- a/Makefile +++ b/Makefile @@ -595,7 +595,7 @@ simple-inference: examples/simple-inference/simple-inference.cpp ggml.o llama.o batched: examples/batched/batched.cpp ggml.o llama.o $(COMMON_DEPS) $(OBJS) $(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS) -batched-bench: examples/batched-bench/batched-bench.cpp build-info.o ggml.o llama.o common.o $(OBJS) +batched-bench: examples/batched-bench/batched-bench.cpp build-info.o ggml.o llama.o $(COMMON_DEPS) $(OBJS) $(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS) quantize: examples/quantize/quantize.cpp build-info.o ggml.o llama.o $(OBJS)