Conform to new makefile package changes.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2590 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 1997-10-30 19:37:24 +00:00
parent 710599da68
commit 3324d6f0d4
5 changed files with 17 additions and 7 deletions

View file

@ -1,3 +1,12 @@
Thu Oct 30 14:32:28 1997 Adam Fedor <fedor@spanky.doc.com>
* Makefile (GNUSTEP_INSTALLATION_DIR): New variable.
* checks/Makefile (TOOL_NAME): Remove duplicate nsattributedstring.
* src/Makefile: Add libgnustep-base_ prefix to appropriate
variables.
* src/NSProxy.m: Add limits.h for Solaris.
Tue Oct 28 10:05:00 1997 Richard Frith-Macdonald <richard@brainstorm.co.uk>
* src/NSData.m: Added [-replacementObjectForPortCoder:] method to

View file

@ -21,6 +21,7 @@
# License along with this library; if not, write to the Free
# Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
include $(GNUSTEP_SYSTEM_ROOT)/Makefiles/common.make

View file

@ -37,7 +37,7 @@ LIBRARY_NAME=libgnustep-base
# GNUSTEP_INSTALL_PREFIX must be defined here and not in config.h because
# the installing person may set it on the `make' command line.
DEFS= -DGNUSTEP_INSTALL_PREFIX=$(GNUSTEP_SYSTEM_ROOT) \
-DPLATFORM_OS=\"@PLATFORM_OS@\" \
-DPLATFORM_OS=\"$(GNUSTEP_TARGET_OS)\" \
-DGNUSTEP_TARGET_DIR=\"$(GNUSTEP_TARGET_DIR)\" \
-DLIBRARY_COMBO=\"$(LIBRARY_COMBO)\"
@ -471,17 +471,17 @@ dynamic-load.h \
include/preface.h
# The C source files to be compiled
C_FILES = $(GNU_CFILES) $(NEXTSTEP_CFILES) $(NEXTSTEP_DERIVED_CFILES) \
libgnustep-base_C_FILES = $(GNU_CFILES) $(NEXTSTEP_CFILES) $(NEXTSTEP_DERIVED_CFILES) \
$(BASE_CFILES)
# The Objective-C source files to be compiled
OBJC_FILES = $(GNU_MFILES) $(NEXTSTEP_MFILES) $(BASE_MFILES) \
libgnustep-base_OBJC_FILES = $(GNU_MFILES) $(NEXTSTEP_MFILES) $(BASE_MFILES) \
$(NSVALUE_MFILES) $(NSNUMBER_MFILES)
HEADER_FILES_DIR = .
HEADER_FILES_INSTALL_DIR = /gnustep/base
libgnustep-base_HEADER_FILES_DIR = .
libgnustep-base_HEADER_FILES_INSTALL_DIR = /gnustep/base
HEADER_FILES = $(NEXTSTEP_HEADERS) $(BASE_HEADERS)
libgnustep-base_HEADER_FILES = $(NEXTSTEP_HEADERS) $(BASE_HEADERS)
-include Makefile.preamble

View file

@ -26,6 +26,7 @@
#include <Foundation/NSMethodSignature.h>
#include <Foundation/NSAutoreleasePool.h>
#include <Foundation/NSException.h>
#include "limits.h"
#include <objc/objc-api.h>

View file

@ -54,7 +54,6 @@ oldclient \
oldserver \
invocation \
diningPhilosophers \
nsattributedstring \
nsmaptable \
nshashtable \
tcpport-server \