Browse Source

Rename speak => speak-ng.

master
Reece H. Dunn 9 years ago
parent
commit
db8451e9a2
3 changed files with 6 additions and 6 deletions
  1. 1
    1
      .gitignore
  2. 4
    4
      Makefile.am
  3. 1
    1
      src/speak-ng.c

+ 1
- 1
.gitignore View File

@@ -46,7 +46,7 @@ libespeak.so*
platforms/*/espeak-phoneme-data
espeak-ng
espeakedit
speak
speak-ng

# Linux/Source distribution files


+ 4
- 4
Makefile.am View File

@@ -155,11 +155,11 @@ src_libespeak_la_CXXFLAGS = $(common_FLAGS) $(libespeak_FLAGS) $(wave_FLAGS) \
-pedantic -fno-exceptions -D PATH_ESPEAK_DATA=\"$(DATADIR)\"
src_libespeak_la_SOURCES = $(common_SOURCE) $(libespeak_SOURCE) $(wave_SOURCE)

bin_PROGRAMS += src/speak
bin_PROGRAMS += src/speak-ng

src_speak_LDFLAGS = $(wave_LIBS) -lpthread -lm
src_speak_CFLAGS = $(common_FLAGS) $(wave_FLAGS) -I src/libespeak-ng
src_speak_SOURCES = src/speak.c $(common_SOURCE) $(wave_SOURCE)
src_speak_ng_LDFLAGS = $(wave_LIBS) -lpthread -lm
src_speak_ng_CFLAGS = $(common_FLAGS) $(wave_FLAGS) -I src/libespeak-ng
src_speak_ng_SOURCES = src/speak-ng.c $(common_SOURCE) $(wave_SOURCE)

bin_PROGRAMS += src/espeak-ng


src/speak.c → src/speak-ng.c View File

@@ -73,7 +73,7 @@ unsigned int wavefile_count = 0;
int end_of_sentence = 0;

static const char *help_text =
"\nspeak [options] [\"<words>\"]\n\n"
"\nspeak-ng [options] [\"<words>\"]\n\n"
"-f <text file> Text file to speak\n"
"--stdin Read text input from stdin instead of a file\n\n"
"If neither -f nor --stdin, then <words> are spoken, or if none then text\n"

Loading…
Cancel
Save