libs-gui/Tools/speech_recognizer/GNUmakefile

27 lines
802 B
Text
Raw Normal View History

2020-01-30 21:28:18 +00:00
include $(GNUSTEP_MAKEFILES)/common.make
include ../../config.make
2020-01-30 21:28:18 +00:00
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 = GSSpeechRecognitionServer
GSSpeechRecognitionServer_LANGUAGES = English
GSSpeechRecognitionServer_OBJC_FILES = \
GSSpeechRecognitionEngine.m \
GSSpeechRecognitionServer.m \
main.m
2020-02-08 12:37:58 +00:00
# Add includes and link dirs....
GSSpeechRecognitionServer_OBJC_FILES += $(RECOGNIZER_ENGINE_CLASS)
GSSpeechRecognitionServer_INCLUDE_DIRS += $(RECOGNIZER_BASE_CFLAGS) \
-I../../Headers \
2020-01-30 21:28:18 +00:00
-I../../Headers/Additions
GSSpeechRecognitionServer_LIB_DIRS += -L../../Source/$(GNUSTEP_OBJ_DIR) \
-L/usr/local/lib -lgnustep-gui \
$(RECOGNIZER_BASE_LIBS)
2020-01-30 21:28:18 +00:00
include $(GNUSTEP_MAKEFILES)/application.make