2009-08-02 00:33:19 +00:00
|
|
|
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 = \
|
2009-08-15 21:28:10 +00:00
|
|
|
GSSpeechEngine.m \
|
|
|
|
GSSpeechServer.m \
|
|
|
|
GSSpeechSynthesizer.m \
|
|
|
|
main.m
|
2009-08-02 00:33:19 +00:00
|
|
|
|
|
|
|
ifeq ($(GSSPEECHENGINE), Flite)
|
|
|
|
GSSpeechServer_OBJC_FILES += FliteSpeechEngine.m
|
2009-08-15 21:28:10 +00:00
|
|
|
GSSpeechServer_INCLUDE_DIRS += -I/usr/local/include/flite -I../../Headers \
|
|
|
|
-I../../Headers/Additions
|
|
|
|
GSSpeechServer_LIB_DIRS += -L../../Source/$(GNUSTEP_OBJ_DIR) \
|
2018-01-28 20:45:16 +00:00
|
|
|
-L/usr/local/lib -lgnustep-gui $(FLITE_EXTRA_LIBS) \
|
|
|
|
$(FLITE_BASE_LIBS)
|
2009-08-02 00:33:19 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
include $(GNUSTEP_MAKEFILES)/application.make
|