mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-26 16:21:11 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28460 72102866-910b-0410-8b05-ffd578937521
33 lines
901 B
Makefile
33 lines
901 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 -I../../Headers \
|
|
-I../../Headers/Additions
|
|
GSSpeechServer_LIB_DIRS += -L../../Source/$(GNUSTEP_OBJ_DIR) \
|
|
-L/usr/local/lib -lgnustep-gui -lflite_cmu_us_kal \
|
|
-lflite_usenglish -lflite_cmulex -lflite
|
|
endif
|
|
|
|
GSSpeechServer_OBJCFLAGS = -std=c99 -g -Werror
|
|
|
|
include $(GNUSTEP_MAKEFILES)/application.make
|