Skip to content

Commit

Permalink
Merge pull request ggerganov#34 from tazz4843/master
Browse files Browse the repository at this point in the history
Add static library make target
  • Loading branch information
ggerganov authored Oct 10, 2022
2 parents 7edaa7d + 64752ac commit 6e29d84
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,11 @@ ggml.o: ggml.c ggml.h
whisper.o: whisper.cpp whisper.h
$(CXX) $(CXXFLAGS) -c whisper.cpp

libwhisper.a: ggml.o whisper.o
ar rcs libwhisper.a ggml.o whisper.o

clean:
rm -f *.o main
rm -f *.o main libwhisper.a

#
# Examples
Expand Down

0 comments on commit 6e29d84

Please sign in to comment.