mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 02:20:37 +00:00
* configure: Regenerated * configure.ac: Check for flite library and flite.h header. * Tools/GNUmakefile: Add ${BUILD_SPEECH} to subproject list. * Tools/say/GNUmakefile * Tools/say/say.m: Say utility * Tools/speech/FliteSpeechEngine.m: * Tools/speech/GNUmakefile * Tools/speech/GSSpeechEngine.[hm] * Tools/speech/GSSpeechServer.[hm] * Tools/speech/GSSpeechSynthesizer.[hm]: Speech synthesis engine implementation using flite. * Tools/speech/main.m: main for the server application. Speech code by David Chisnall <theraven@sucs.org> Changes to makefiles and config by Gregory Casamento. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28430 72102866-910b-0410-8b05-ffd578937521
30 lines
823 B
Makefile
30 lines
823 B
Makefile
ETOILE_CORE_MODULE = YES
|
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
# Set the default. Eventually this should be conditional.
|
|
GSSPEECHENGINE = Flite
|
|
|
|
VERSION = 0.1
|
|
|
|
# This is an app not a tool because, eventually, it will present the user
|
|
# interface for the GUI part of the speech engine.
|
|
APP_NAME = GSSpeechServer
|
|
|
|
GSSpeechServer_LANGUAGES = English
|
|
|
|
GSSpeechServer_OBJC_FILES = \
|
|
GSSpeechEngine.m\
|
|
GSSpeechServer.m\
|
|
GSSpeechSynthesizer.m\
|
|
main.m
|
|
|
|
ifeq ($(GSSPEECHENGINE), Flite)
|
|
GSSpeechServer_OBJC_FILES += FliteSpeechEngine.m
|
|
GSSpeechServer_INCLUDE_DIRS += -I/usr/local/include/flite
|
|
GSSpeechServer_LIB_DIRS += -L/usr/local/lib -lflite_cmu_us_kal -lflite_usenglish -lflite_cmulex -lflite
|
|
endif
|
|
|
|
GSSpeechServer_OBJCFLAGS = -std=c99 -g -Werror
|
|
|
|
include $(GNUSTEP_MAKEFILES)/application.make
|