2002-03-06 15:50:14 +00:00
|
|
|
#
|
|
|
|
# src makefile for the GNUstep Base Library
|
|
|
|
#
|
2010-02-14 10:48:10 +00:00
|
|
|
# Copyright (C) 199a-2010 Free Software Foundation, Inc.
|
2002-03-06 15:50:14 +00:00
|
|
|
#
|
|
|
|
# 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
|
2024-11-07 13:37:59 +00:00
|
|
|
# Software Foundation, Inc., 31 Milk Street #960789 Boston, MA 02196 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
|
|
|
|
2013-07-03 07:55:48 +00:00
|
|
|
Additions_C_FILES =\
|
|
|
|
GSTypeEncoding.c \
|
|
|
|
|
2002-03-06 15:50:14 +00:00
|
|
|
Additions_OBJC_FILES =\
|
2002-11-27 12:52:29 +00:00
|
|
|
GSObjCRuntime.m \
|
2002-11-19 05:37:42 +00:00
|
|
|
GCObject.m \
|
|
|
|
GCArray.m \
|
|
|
|
GCDictionary.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 \
|
2010-02-14 10:48:10 +00:00
|
|
|
NSArray+GNUstepBase.m \
|
|
|
|
NSAttributedString+GNUstepBase.m \
|
|
|
|
NSBundle+GNUstepBase.m \
|
|
|
|
NSCalendarDate+GNUstepBase.m \
|
|
|
|
NSData+GNUstepBase.m \
|
2010-02-18 16:18:54 +00:00
|
|
|
NSDebug+GNUstepBase.m \
|
2010-02-14 10:48:10 +00:00
|
|
|
NSError+GNUstepBase.m \
|
2015-07-16 07:38:14 +00:00
|
|
|
NSHashTable+GNUstepBase.m \
|
2010-02-14 10:48:10 +00:00
|
|
|
NSFileHandle+GNUstepBase.m \
|
|
|
|
NSMutableString+GNUstepBase.m \
|
|
|
|
NSNumber+GNUstepBase.m \
|
|
|
|
NSObject+GNUstepBase.m \
|
2010-06-01 09:43:28 +00:00
|
|
|
NSPropertyList+GNUstepBase.m \
|
2010-02-14 10:48:10 +00:00
|
|
|
NSProcessInfo+GNUstepBase.m \
|
2010-03-05 12:41:40 +00:00
|
|
|
NSStream+GNUstepBase.m \
|
2010-02-14 10:48:10 +00:00
|
|
|
NSString+GNUstepBase.m \
|
|
|
|
NSTask+GNUstepBase.m \
|
2010-02-18 16:18:54 +00:00
|
|
|
NSThread+GNUstepBase.m \
|
2010-02-14 10:48:10 +00:00
|
|
|
NSURL+GNUstepBase.m \
|
2010-03-01 08:46:21 +00:00
|
|
|
|
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
|