You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
528 B

  1. --- a/src/Makefile
  2. +++ b/src/Makefile
  3. @@ -83,15 +83,15 @@ libespeak_SOURCES = speak_lib.cpp compil
  4. SRCS1=$(speak_SOURCES)
  5. OBJS1=$(patsubst %.cpp,%.o,$(SRCS1))
  6. -LIBS1=-lstdc++ $(LIB_AUDIO) -lpthread $(EXTRA_LIBS)
  7. +LIBS1=$(LIB_AUDIO) -lpthread $(EXTRA_LIBS)
  8. SRCS2=$(libespeak_SOURCES)
  9. OBJS2=$(patsubst %.cpp,x_%.o,$(SRCS2))
  10. -LIBS2=-lstdc++ $(LIB_AUDIO) -lpthread
  11. +LIBS2=$(LIB_AUDIO) -lpthread
  12. SRCS3 = espeak.cpp
  13. OBJS3=$(patsubst %.cpp,%.o,$(SRCS3))
  14. -LIBS3=-lstdc++ -L . -lespeak
  15. +LIBS3=-L . -lespeak
  16. CXXFLAGS=-O2