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

platforms/*/espeak-phoneme-data platforms/*/espeak-phoneme-data
espeak-ng espeak-ng
espeakedit espeakedit
speak
speak-ng


# Linux/Source distribution files # Linux/Source distribution files



+ 4
- 4
Makefile.am View File

-pedantic -fno-exceptions -D PATH_ESPEAK_DATA=\"$(DATADIR)\" -pedantic -fno-exceptions -D PATH_ESPEAK_DATA=\"$(DATADIR)\"
src_libespeak_la_SOURCES = $(common_SOURCE) $(libespeak_SOURCE) $(wave_SOURCE) 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 bin_PROGRAMS += src/espeak-ng



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

int end_of_sentence = 0; int end_of_sentence = 0;


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

Loading…
Cancel
Save