2002-03-27 23:44:41 +00:00
|
|
|
#
|
|
|
|
# Top level makefile for GNUstep Backend
|
|
|
|
#
|
|
|
|
# Copyright (C) 2002 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# Author: Adam Fedor <fedor@gnu.org>
|
|
|
|
#
|
|
|
|
# This file is part of the GNUstep Backend.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
2007-10-29 23:25:10 +00:00
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
2002-03-27 23:44:41 +00:00
|
|
|
# License as published by the Free Software Foundation; either
|
2007-10-29 23:25:10 +00:00
|
|
|
# version 3 of the License, or (at your option) any later version.
|
2002-03-27 23:44:41 +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 23:25:10 +00:00
|
|
|
# Lesser General Public License for more details.
|
2002-03-27 23:44:41 +00:00
|
|
|
#
|
2007-10-29 23:25:10 +00:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
2002-03-27 23:44:41 +00:00
|
|
|
# License along with this library; see the file COPYING.LIB.
|
2007-10-29 23:25:10 +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.
|
2002-03-27 23:44:41 +00:00
|
|
|
|
2007-02-28 07:18:52 +00:00
|
|
|
ifeq ($(GNUSTEP_MAKEFILES),)
|
|
|
|
GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(GNUSTEP_MAKEFILES),)
|
|
|
|
$(error You need to set GNUSTEP_MAKEFILES before compiling!)
|
|
|
|
endif
|
|
|
|
|
2002-03-27 23:44:41 +00:00
|
|
|
# Install into the system root by default
|
2006-10-11 09:32:00 +00:00
|
|
|
GNUSTEP_INSTALLATION_DOMAIN = SYSTEM
|
2002-03-27 23:44:41 +00:00
|
|
|
|
|
|
|
RPM_DISABLE_RELOCATABLE=YES
|
|
|
|
PACKAGE_NEEDS_CONFIGURE = YES
|
|
|
|
|
2006-03-14 15:32:09 +00:00
|
|
|
SVN_MODULE_NAME = back
|
|
|
|
SVN_BASE_URL = svn+ssh://svn.gna.org/svn/gnustep/libs
|
2002-03-27 23:44:41 +00:00
|
|
|
|
|
|
|
GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES=back.make
|
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
|
|
|
|
PACKAGE_NAME = gnustep-back
|
|
|
|
|
|
|
|
include ./Version
|
|
|
|
|
|
|
|
#
|
|
|
|
# The list of subproject directories
|
|
|
|
#
|
2005-04-21 03:43:18 +00:00
|
|
|
SUBPROJECTS = Source Tools
|
|
|
|
|
|
|
|
ifneq ($(fonts), no)
|
|
|
|
SUBPROJECTS += Fonts
|
|
|
|
endif
|
2002-03-27 23:44:41 +00:00
|
|
|
|
|
|
|
-include GNUmakefile.preamble
|
|
|
|
|
|
|
|
include $(GNUSTEP_MAKEFILES)/aggregate.make
|
|
|
|
|
|
|
|
-include GNUmakefile.postamble
|