2002-03-06 15:50:14 +00:00
|
|
|
#
|
|
|
|
# src makefile for the GNUstep Base Library
|
|
|
|
#
|
|
|
|
# Copyright (C) 1997 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# Written by: Scott Christley <scottc@net-community.com>
|
|
|
|
#
|
|
|
|
# This file is part of the GNUstep Base Library.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
2007-09-14 11:36:11 +00:00
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
2002-03-06 15:50:14 +00:00
|
|
|
# License as published by the Free Software Foundation; either
|
2008-06-08 10:38:33 +00:00
|
|
|
# version 2 of the License, or (at your option) any later version.
|
2002-03-06 15:50:14 +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
|
|
|
|
# Library General Public License for more details.
|
|
|
|
#
|
2007-09-14 11:36:11 +00:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
2002-03-06 15:50:14 +00:00
|
|
|
# License along with this library; if not, write to the Free
|
2006-10-16 09:30:18 +00:00
|
|
|
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
# Boston, MA 02111 USA.
|
2002-03-06 15:50:14 +00:00
|
|
|
#
|
|
|
|
|
2008-12-19 12:53:30 +00:00
|
|
|
PACKAGE_NAME = gnustep-base
|
2002-03-08 06:57:03 +00:00
|
|
|
GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES=../../base.make
|
|
|
|
|
2002-03-06 15:50:14 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
2002-11-27 17:15:39 +00:00
|
|
|
include ../../config.mak
|
2002-03-06 15:50:14 +00:00
|
|
|
|
2002-12-30 17:24:51 +00:00
|
|
|
SUBPROJECT_NAME = Additions
|
2002-03-06 15:50:14 +00:00
|
|
|
|
|
|
|
Additions_OBJC_FILES =\
|
2003-01-09 16:03:50 +00:00
|
|
|
GSCategories.m \
|
2002-11-27 12:52:29 +00:00
|
|
|
GSObjCRuntime.m \
|
2002-11-19 05:37:42 +00:00
|
|
|
GCObject.m \
|
|
|
|
GCArray.m \
|
|
|
|
GCDictionary.m \
|
2003-10-26 13:45:49 +00:00
|
|
|
GSLock.m \
|
2002-03-06 15:50:14 +00:00
|
|
|
GSMime.m \
|
2002-11-19 05:37:42 +00:00
|
|
|
GSXML.m \
|
2005-03-15 08:11:04 +00:00
|
|
|
GSFunctions.m \
|
2007-05-14 16:55:16 +00:00
|
|
|
GSInsensitiveDictionary.m \
|
2002-11-19 05:37:42 +00:00
|
|
|
behavior.m
|
2002-03-06 15:50:14 +00:00
|
|
|
|
2002-12-30 17:24:51 +00:00
|
|
|
ifneq ($(OBJC_RUNTIME_LIB), gnu)
|
2009-01-12 12:48:46 +00:00
|
|
|
ifneq ($(OBJC_RUNTIME_LIB), gnugc)
|
|
|
|
Additions_OBJC_FILES += GSNextRuntime.m
|
|
|
|
endif
|
2002-12-03 02:50:07 +00:00
|
|
|
endif
|
2002-12-30 17:24:51 +00:00
|
|
|
ifneq ($(FOUNDATION_LIB), gnu)
|
2002-12-03 02:50:07 +00:00
|
|
|
Additions_OBJC_FILES += GSCompatibility.m
|
|
|
|
endif
|
2004-12-21 19:43:59 +00:00
|
|
|
Additions_OBJC_FILES += Unicode.m
|
2002-03-06 15:50:14 +00:00
|
|
|
|
|
|
|
-include Makefile.preamble
|
|
|
|
|
|
|
|
include $(GNUSTEP_MAKEFILES)/subproject.make
|
|
|
|
|
|
|
|
-include Makefile.postamble
|