mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-12-19 04:37:51 +00:00
Merge pull request #34 from tazz4843/master
Add static library make target
This commit is contained in:
commit
6e29d8453c
5
Makefile
5
Makefile
@ -60,8 +60,11 @@ ggml.o: ggml.c ggml.h
|
|||||||
whisper.o: whisper.cpp whisper.h
|
whisper.o: whisper.cpp whisper.h
|
||||||
$(CXX) $(CXXFLAGS) -c whisper.cpp
|
$(CXX) $(CXXFLAGS) -c whisper.cpp
|
||||||
|
|
||||||
|
libwhisper.a: ggml.o whisper.o
|
||||||
|
ar rcs libwhisper.a ggml.o whisper.o
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f *.o main
|
rm -f *.o main libwhisper.a
|
||||||
|
|
||||||
#
|
#
|
||||||
# Examples
|
# Examples
|
||||||
|
Loading…
Reference in New Issue
Block a user