1997-10-30 22:23:50 +00:00
|
|
|
#
|
1997-10-31 16:26:44 +00:00
|
|
|
# Main Makefile for GNUstep Base Library.
|
|
|
|
#
|
1997-10-30 22:23:50 +00:00
|
|
|
# Copyright (C) 1997 Free Software Foundation, Inc.
|
|
|
|
#
|
1997-10-31 16:26:44 +00:00
|
|
|
# Written by: Scott Christley <scottc@net-community.com>
|
1997-10-30 22:23:50 +00:00
|
|
|
#
|
|
|
|
# This file is part of the GNUstep Base Library.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
2005-07-15 22:51:23 +00:00
|
|
|
# modify it under the terms of the GNU General Public
|
1997-10-30 22:23:50 +00:00
|
|
|
# License as published by the Free Software Foundation; either
|
2007-09-14 11:36:11 +00:00
|
|
|
# version 3 of the License, or (at your option) any later version.
|
1997-10-30 22:23:50 +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
|
2005-07-15 22:51:23 +00:00
|
|
|
# General Public License for more details.
|
1997-10-30 22:23:50 +00:00
|
|
|
#
|
2005-07-15 22:51:23 +00:00
|
|
|
# You should have received a copy of the GNU General Public
|
1997-10-30 22:23:50 +00:00
|
|
|
# License along with this library; if not, write to the Free
|
2006-05-09 14:21:26 +00:00
|
|
|
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
# Boston, MA 02111 USA
|
1997-10-31 16:26:44 +00:00
|
|
|
#
|
1997-10-30 22:23:50 +00:00
|
|
|
|
2007-02-20 00:09:10 +00:00
|
|
|
ifeq ($(GNUSTEP_MAKEFILES),)
|
|
|
|
GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null)
|
|
|
|
endif
|
2007-02-19 14:26:53 +00:00
|
|
|
|
2001-06-05 14:12:18 +00:00
|
|
|
ifeq ($(GNUSTEP_MAKEFILES),)
|
2007-02-19 14:26:53 +00:00
|
|
|
$(error You need to set GNUSTEP_MAKEFILES before compiling!)
|
2001-06-05 14:12:18 +00:00
|
|
|
endif
|
|
|
|
|
1997-10-30 22:23:50 +00:00
|
|
|
# Install into the system root by default
|
2006-10-11 09:29:06 +00:00
|
|
|
# FIXME: would it work if you want to install it into local
|
|
|
|
GNUSTEP_INSTALLATION_DOMAIN = SYSTEM
|
1997-10-30 22:23:50 +00:00
|
|
|
|
2001-01-17 19:02:54 +00:00
|
|
|
RPM_DISABLE_RELOCATABLE=YES
|
|
|
|
PACKAGE_NEEDS_CONFIGURE = YES
|
|
|
|
|
2006-03-14 04:45:42 +00:00
|
|
|
SVN_MODULE_NAME = base
|
|
|
|
SVN_BASE_URL = svn+ssh://svn.gna.org/svn/gnustep/libs
|
2001-11-22 00:55:02 +00:00
|
|
|
|
2001-01-29 19:40:02 +00:00
|
|
|
#
|
|
|
|
# Include local (new) configuration - this will prevent the old one
|
|
|
|
# (if any) from $(GNUSTEP_MAKEFILES)/Additional/base.make to be included
|
|
|
|
#
|
|
|
|
GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES=base.make
|
1998-02-06 17:22:46 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
1997-10-28 14:34:49 +00:00
|
|
|
|
1997-10-31 16:26:44 +00:00
|
|
|
include ./Version
|
|
|
|
|
2001-01-17 19:02:54 +00:00
|
|
|
PACKAGE_NAME = gnustep-base
|
1997-10-31 16:26:44 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# The list of subproject directories
|
|
|
|
#
|
2006-03-17 16:44:54 +00:00
|
|
|
SUBPROJECTS = Source
|
|
|
|
ifneq ($(GNUSTEP_TARGET_OS), mingw32)
|
2007-02-27 14:26:19 +00:00
|
|
|
SUBPROJECTS += SSL
|
2006-03-17 16:44:54 +00:00
|
|
|
endif
|
|
|
|
SUBPROJECTS += Tools NSTimeZones Resources
|
1997-10-28 14:34:49 +00:00
|
|
|
|
|
|
|
-include Makefile.preamble
|
|
|
|
|
1998-02-06 17:22:46 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/aggregate.make
|
1997-10-28 14:34:49 +00:00
|
|
|
|
|
|
|
-include Makefile.postamble
|
2001-11-22 00:55:02 +00:00
|
|
|
|