Updated makefiles location in documentation, and few small comments

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@18065 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2003-11-08 15:51:21 +00:00
parent e5fbbda4ed
commit 11fa6583d5
8 changed files with 31 additions and 15 deletions

View file

@ -1,3 +1,15 @@
Sat Nov 8 16:40:59 2003 Matt Rice <ratmice@yahoo.com>
* Documentation/DESIGN: Updated makefiles location.
* Documentation/README.MinGW: Updated makefiles location. Added
comment on buggy 'ln -s' on mingw.
* Documentation/README.Cygwin: Updated makefiles location.
* Documentation/README.NetBSD: Updated makefiles location.
* Documentation/install.texi: Updated makefiles location.
* Documentation/machines.texi: Updated makefiles location.
* Documentation/make.texi: Updated makefiles location, use
GNUSTEP_MAKEFILES variable.
Mon Nov 3 23:48:41 2003 Marcus Muller <znek@mulle-kybernetik.com>
* target.make (SHARED_LIB_LINK_CMD): Use -prebind flag on Apple.

View file

@ -476,7 +476,7 @@ intended for redefining the standard variables or for adding to
them. The second one is intended for adding additional rules or
targets.
The makefile package is installed under $(GNUSTEP_SYSTEM_ROOT)/Makefiles.
The makefile package is installed under $(GNUSTEP_SYSTEM_ROOT)/Library/Makefiles.
Ovidiu Predescu

View file

@ -155,13 +155,17 @@ export HOMEDRIVE=C:
export HOMEPATH=/home/myname
export HOME=/C/home/myname
export GNUSTEP_SYSTEM_ROOT=/C/GNUstep/System
. $GNUSTEP_SYSTEM_ROOT/Makefiles/GNUstep.sh
. $GNUSTEP_SYSTEM_ROOT/Library/Makefiles/GNUstep.sh
NOTE: Sometimes the HOME variable may already be set by Windows to be
%USERPROFILE% (which is the Windows variable that contains the path of
your home folder). MSYS has problems with that as it doesn't recognise
that %USERPROFILE% is a variable name. Be sure to check that if you run
into errors.
MinGW comes with a buggy 'ln -s' and Makefiles are no longer
installed into $GNUSTEP_SYSTEM_ROOT/Makefiles so there is
no compatibility symlink to $GNUSTEP_SYSTEM_ROOT/Library/Makefiles

View file

@ -89,7 +89,7 @@ using Cygwin's make instead (/usr/bin/make instead of just make).
4. Now source the GNUstep.sh file so the rest of the packages will
compile correctly:
. C:/GNUstep/System/Makefiles/GNUstep.sh
. C:/GNUstep/System/Library/Makefiles/GNUstep.sh
Also put this command in your shell startup script. Be sure to adjust
this path to match your real GNUstep root directory if you changed it
@ -134,7 +134,7 @@ If you get tired of typing "target=i386-mingw32" all the time, then before
you exec the GNUstep.sh script, just set the GNUSTEP_HOST:
export GNUSTEP_HOST=i586-pc-mingw32
. $GNUSTEP_SYSTEM_ROOT/Makefiles/GNUstep.sh
. $GNUSTEP_SYSTEM_ROOT/Library/Makefiles/GNUstep.sh
Problems?
---------

View file

@ -60,7 +60,7 @@ gmake install
gmake distclean
source /usr/local/GNUstep/System/Makefiles/GNUstep.csh
source /usr/local/GNUstep/System/Library/Makefiles/GNUstep.csh
tar zxvf gnustep-objc-1.0.1.tar.gz
@ -119,7 +119,7 @@ fi
[Add `~/.cshrc']
setenv GNUSTEP_TZ Japan
source /usr/local/GNUstep/System/Makefiles/GNUstep.csh
source /usr/local/GNUstep/System/Library/Makefiles/GNUstep.csh
if (`gdomap -L GDNCServer | grep -c Found` == '0') then
echo 'Starting GNUstep services.'
gdnc
@ -212,12 +212,12 @@ LDFLAGS = -L/usr/pkg/lib -liconv
su
gmake install
File : /usr/GNUstep/System/Makefiles/framework.make
File : /usr/GNUstep/System/Library/Makefiles/framework.make
change ine: with ... {if($$2 == "R") ...
in ... {if($$2 == "D") ...
7.) core/base: source /usr/GNUstep/System/Makefiles/GNustep.csh
7.) core/base: source /usr/GNUstep/System/Library/Makefiles/GNustep.csh
./configure --prefix=/usr/GNUstep
@ -289,7 +289,7 @@ Time Zone" "Europe/Berlin"
Add this at the end of .cshrc:
setenv LD_LIBRARY_PATH /usr/X11R6/lib:/usr/local/lib/usr/pkg/lib
source /usr/GNUstep/System/Makefiles/GNUstep.csh
source /usr/GNUstep/System/Library/Makefiles/GNUstep.csh
if ( `gdomap -L GDNCServer | grep -c Found` == '0' ) then
echo "Starting GNUstep services..."
gdnc

View file

@ -253,7 +253,7 @@ lines similar to these:
@example
# Setup for the GNUstep environment
. /usr/GNUstep/System/Makefiles/GNUstep.sh
. /usr/GNUstep/System/Library/Makefiles/GNUstep.sh
@end example
This will source in the GNUstep.sh file and set the environment
@ -294,8 +294,8 @@ you can add the following lines to that file:
@example
# Setup for the GNUstep environment
if [ -f $GNUSTEP_SYSTEM_ROOT/Makefiles/GNUstep.sh ]; then
. $GNUSTEP_SYSTEM_ROOT/Makefiles/GNUstep.sh
if [ -f $GNUSTEP_SYSTEM_ROOT/Library/Makefiles/GNUstep.sh ]; then
. $GNUSTEP_SYSTEM_ROOT/Library/Makefiles/GNUstep.sh
fi
@end example

View file

@ -624,7 +624,7 @@ class-C network, your /etc/gdomap_addresses file would contain the line
and your startup file would contain the lines
@example
. /usr/local/GNUstep/Makefiles/GNUstep.sh
. /usr/local/GNUstep/Library/Makefiles/GNUstep.sh
gdomap -a /etc/gdomap_addresses
@end example

View file

@ -404,7 +404,7 @@ This example makefile illustrates two libraries, @file{libone} and
#
# Include the common variables defined by the Makefile Package
include $(GNUSTEP_SYSTEM_ROOT)/Makefiles/common.make
include $(GNUSTEP_MAKEFILES)/common.make
# Two libraries
LIBRARY_NAME = libone libtwo
@ -510,7 +510,7 @@ This makefile illustrates two Objective-C programs, @file{simple} and
#
# Include the common variables defined by the Makefile Package
include $(GNUSTEP_SYSTEM_ROOT)/Makefiles/common.make
include $(GNUSTEP_MAKEFILES)/common.make
# Build a simple Objective-C program
OBJC_PROGRAM_NAME = simple list