1997-10-31 01:24:08 +00:00
|
|
|
#
|
|
|
|
# Tools level makefile for GNUstep GUI Library
|
|
|
|
#
|
|
|
|
# Copyright (C) 1997 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# This file is part of the GNUstep GUI Library.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
2007-10-29 21:16:17 +00:00
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
1997-10-31 01:24:08 +00:00
|
|
|
# License as published by the Free Software Foundation; either
|
2008-06-10 04:01:49 +00:00
|
|
|
# version 2 of the License, or (at your option) any later version.
|
1997-10-31 01:24:08 +00:00
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2007-10-29 21:16:17 +00:00
|
|
|
# Lesser General Public License for more details.
|
1997-10-31 01:24:08 +00:00
|
|
|
#
|
2007-10-29 21:16:17 +00:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
1997-10-31 01:24:08 +00:00
|
|
|
# License along with this library; see the file COPYING.LIB.
|
2007-10-29 21:16:17 +00:00
|
|
|
# If not, see <http://www.gnu.org/licenses/> or write to the
|
|
|
|
# Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
|
|
# Boston, MA 02110-1301, USA.
|
1997-10-31 01:24:08 +00:00
|
|
|
|
2008-12-19 13:00:47 +00:00
|
|
|
PACKAGE_NAME = gnustep-gui
|
2001-01-29 19:49:03 +00:00
|
|
|
GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES=../gui.make
|
1998-02-06 19:12:03 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
2001-09-16 19:44:11 +00:00
|
|
|
include ../config.make
|
1997-10-29 10:50:36 +00:00
|
|
|
|
1998-12-17 16:16:03 +00:00
|
|
|
include ../Version
|
2002-07-30 21:19:05 +00:00
|
|
|
|
2020-02-01 09:41:52 +00:00
|
|
|
SUBPROJECTS = $(BUILD_SPEECH) $(BUILD_SOUND) $(BUILD_SPEECH_RECOGNIZER)
|
2006-01-27 17:46:46 +00:00
|
|
|
TOOL_NAME = make_services set_show_service gopen gclose gcloseall
|
2003-11-19 16:10:10 +00:00
|
|
|
SERVICE_NAME = GSspell
|
1997-10-29 10:50:36 +00:00
|
|
|
|
|
|
|
# The source files to be compiled
|
2006-01-27 17:46:46 +00:00
|
|
|
gcloseall_OBJC_FILES = gcloseall.m
|
|
|
|
|
2005-10-09 06:39:08 +00:00
|
|
|
gclose_OBJC_FILES = gclose.m
|
|
|
|
|
2001-11-18 19:01:07 +00:00
|
|
|
gopen_OBJC_FILES = gopen.m
|
|
|
|
|
2001-09-28 23:37:37 +00:00
|
|
|
make_services_OBJC_FILES = make_services.m
|
2001-11-18 19:01:07 +00:00
|
|
|
|
2001-09-28 23:37:37 +00:00
|
|
|
set_show_service_OBJC_FILES = set_show_service.m
|
1998-11-23 15:03:41 +00:00
|
|
|
|
2001-06-21 01:05:11 +00:00
|
|
|
GSspell_OBJC_FILES = GSspell.m
|
|
|
|
|
2001-03-16 23:30:47 +00:00
|
|
|
include GNUmakefile.preamble
|
1997-10-29 10:50:36 +00:00
|
|
|
|
2007-12-17 21:30:19 +00:00
|
|
|
ifeq ($(CROSS_COMPILING),yes)
|
|
|
|
GNUSTEP_MAKE_SERVICES=:
|
|
|
|
else
|
2022-02-22 13:26:54 +00:00
|
|
|
GNUSTEP_MAKE_SERVICES=$(GNUSTEP_OBJ_DIR)/make_services
|
2007-12-17 21:30:19 +00:00
|
|
|
endif
|
2001-03-18 15:59:00 +00:00
|
|
|
|
1998-02-06 19:12:03 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/tool.make
|
1998-11-23 15:03:41 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/service.make
|
2002-07-30 21:19:05 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/aggregate.make
|
1997-10-29 10:50:36 +00:00
|
|
|
|
2001-03-16 23:30:47 +00:00
|
|
|
include GNUmakefile.postamble
|