Skip to content

Commit

Permalink
added suppressions to the Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
kdik committed Nov 13, 2022
1 parent 53d0731 commit cc9f888
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ ifeq ($(shell uname -s),Linux)
endif

tts:
$(CC) $(CFLAGS) -c $@.c $(INCLUDE_FLAGS) -o $(BUILD_DIRECTORY)/$@.o
$(CC) $(CFLAGS) -c $@.c $(INCLUDE_FLAGS) -o $(BUILD_DIRECTORY)/$@.o -Wno-implicit-function-declaration -Wno-int-conversion
$(CC) $(CFLAGS) -shared $(BUILD_DIRECTORY)/$@.o $(LDFLAGS) $(LIBS) -o $(BUILD_DIRECTORY)/lib$@.$(DLL_SUFFIX)
rm -r $(BUILD_DIRECTORY)/$@.o
clean:
rm -r $(BUILD_DIRECTORY)/tts.o $(BUILD_DIRECTORY)/libtts.$(DLL_SUFFIX)
rm -r $(BUILD_DIRECTORY)/libtts.$(DLL_SUFFIX)

0 comments on commit cc9f888

Please sign in to comment.