Add darwin support for nx-gnu-gnu

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@10873 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2001-09-11 21:52:35 +00:00
parent 3874f92b5d
commit 20167833aa
4 changed files with 11 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2001-09-11 Adam Fedor <fedor@gnu.org>
* brain.make: If nx-gnu-gnu, add -lobjc to OBJC_LIBS
* target.make: Extend darwin1.1 rule to darwin1.x
Tue Sep 11 12:19:24 2001 Nicola Pero <nicola@brainstorm.co.uk>
* rules.make (before-install): Removed code to check installation

View file

@ -584,7 +584,7 @@ building:
make shared=yes
@end example
For static libs, use @var{shared=no}, Make sure files and compilation
For static libs, use @code{shared=no}, Make sure files and compilation
done in Unix mode (no ^M in files, @var{export CYGWIN=binmode} usually
works if cygwin is not buggy). Gdomap services not set up
correctly. Must add services lines to @file{C:\WINDOWS\services} (on

View file

@ -96,6 +96,9 @@ endif
ifeq ($(OBJC_RUNTIME_LIB), nx)
OBJC_RUNTIME = NeXT
RUNTIME_DEFINE = -DNeXT_RUNTIME=1
ifeq ($(FOUNDATION_LIB),gnu)
OBJC_LIBS=-lobjc
endif
endif
ifeq ($(OBJC_RUNTIME_LIB), sun)

View file

@ -201,9 +201,9 @@ endif
####################################################
#
# MacOSX public beta, darwin1.2
# MacOSX public beta, darwin1.x
#
ifeq ($(findstring darwin1.2, $(GNUSTEP_TARGET_OS)), darwin1.2)
ifeq ($(findstring darwin1, $(GNUSTEP_TARGET_OS)), darwin1)
ifeq ($(OBJC_RUNTIME), NeXT)
HAVE_BUNDLES = yes
endif