File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -1179,7 +1179,15 @@ llama-gguf: examples/gguf/gguf.cpp \
1179
1179
$(CXX ) $(CXXFLAGS ) -c $< -o $(call GET_OBJ_FILE, $< )
1180
1180
$(CXX ) $(CXXFLAGS ) $(filter-out % .h $< ,$^ ) $(call GET_OBJ_FILE, $< ) -o $@ $(LDFLAGS )
1181
1181
1182
- llama-gguf-hash : examples/gguf-hash/gguf-hash.cpp examples/gguf-hash/deps/sha1/sha1.c examples/gguf-hash/deps/xxhash/xxhash.c\
1182
+ examples/gguf-hash/deps/sha1/sha1.o : \
1183
+ examples/gguf-hash/deps/sha1/sha1.c
1184
+ $(CC ) $(CFLAGS ) -c $< -o $@
1185
+
1186
+ examples/gguf-hash/deps/xxhash/xxhash.o : \
1187
+ examples/gguf-hash/deps/xxhash/xxhash.c
1188
+ $(CC ) $(CFLAGS ) -c $< -o $@
1189
+
1190
+ llama-gguf-hash : examples/gguf-hash/gguf-hash.cpp examples/gguf-hash/deps/sha1/sha1.o examples/gguf-hash/deps/xxhash/xxhash.o\
1183
1191
$(OBJ_ALL )
1184
1192
$(CXX ) $(CXXFLAGS ) -Iexamples/gguf-hash/deps -c $< -o $(call GET_OBJ_FILE, $< )
1185
1193
$(CXX ) $(CXXFLAGS ) $(filter-out % .h $< ,$^ ) $(call GET_OBJ_FILE, $< ) -o $@ $(LDFLAGS )
You can’t perform that action at this time.
0 commit comments