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
|
|
|
|
# modify it under the terms of the GNU Library General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
# Library General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Library General Public
|
|
|
|
# License along with this library; see the file COPYING.LIB.
|
|
|
|
# If not, write to the Free Software Foundation,
|
|
|
|
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
|
|
|
|
|
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
|
|
|
|
|
|
|
SUBPROJECTS = $(BUILD_GSND)
|
2003-06-28 06:46:14 +00:00
|
|
|
APP_NAME = md5Digest
|
2001-11-18 19:01:07 +00:00
|
|
|
TOOL_NAME = make_services set_show_service gopen
|
2001-06-21 01:05:11 +00:00
|
|
|
SERVICE_NAME = example GSspell
|
1997-10-29 10:50:36 +00:00
|
|
|
|
|
|
|
# The source files to be compiled
|
2003-06-28 06:46:14 +00:00
|
|
|
md5Digest_OBJC_FILES = md5Digest.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-09-28 23:37:37 +00:00
|
|
|
example_OBJC_FILES = example.m
|
1997-10-29 10:50:36 +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
|
|
|
|
1998-02-05 16:48:59 +00:00
|
|
|
-include GNUmakefile.local
|
|
|
|
|
2001-03-18 15:59:00 +00:00
|
|
|
GNUSTEP_MAKE_SERVICES=./$(GNUSTEP_OBJ_DIR)/make_services
|
|
|
|
|
2003-06-28 06:46:14 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/application.make
|
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
|
|
|
|
2000-10-13 15:58:57 +00:00
|
|
|
-include GNUmakefile.local.service
|
2001-03-16 23:30:47 +00:00
|
|
|
include GNUmakefile.postamble
|