git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@11252 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2001-10-26 14:54:22 +00:00
parent 519ed2ec6c
commit c67fc12da3
5 changed files with 48 additions and 10 deletions

View file

@ -1,3 +1,7 @@
2001-10-26 Adam Fedor <fedor@gnu.org>
* Documentation/news.texi: Update
Thu Oct 25 10:41:04 2001 Nicola Pero <nicola@brainstorm.co.uk>
* configure.in: Output a message displaying the version of

View file

@ -0,0 +1,25 @@
@chapter Announcement
@include version.texi
The GNUstep Makefile Package version @value{GNUSTEP-MAKE-VERSION} is now available.
@section What is the GNUstep makefile package?
The makefile package is a simple, powerful and extensible way to
write makefiles for a GNUstep-based project. It allows the user to
write a project without having to deal with the complex issues
associated with configuration, building, installation, and packaging.
It also allows the user to easily create cross-compiled binaries.
@set ANNOUNCE-ONLY
@include news.texi
@clear ANNOUNCE-ONLY
@section Obtaining gnustep-make
You can get the gstep-make-@value{GNUSTEP-MAKE-VERSION}.tar.gz
distribution file at @url{ftp://ftp.gnustep.org/pub/gnustep/core}
Please send bug reports to @email{bug-gnustep@@gnu.org}.

View file

@ -1,27 +1,33 @@
@c -*-texinfo-*-
@ifclear ANNOUNCE-ONLY
@chapter NEWS
@end ifclear
@ifset TEXT-ONLY
@include version.texi
@end ifset
The currently released version is @samp{@value{GNUSTEP-MAKE-VERSION}}.
@end ifclear
@section Changes in version @samp{1.2.0pre1}
@itemize @bullet
@item The core rules and internals of gnustep-make have been fundamentally
redesigned and rewritten. notably, gnustep-make now works using only
a single recursive sub-make invocation rather than two, which makes
it consistently faster and simpler in all circumstances.
@item The clean rules have been heavily optimized - they no longer use
recursive sub-make invocations at all and so they are really fast.
@item Many improvements to java support. Optimized management of nested classes
@item Better conformance to make conventions.
@item New variables, fixes to reduce the number of evaluations
@item Fixed darwin support
@item Support for C++ files.
@item Bunches of variables removed or changed for simplification.
@item Made use of library installation dir consistent with other installation.
@item Much improved Windows path support
@end itemize
@ifclear ANNOUNCE-ONLY
@section Changes in version @samp{1.0.1}
@itemize @bullet
@ -31,8 +37,6 @@ The currently released version is @samp{@value{GNUSTEP-MAKE-VERSION}}.
@item Fixes to run on FreeBSD, Solaris.
@end itemize
@ifclear ANNOUNCE-ONLY
@section Changes in version @samp{1.0.0}
@itemize @bullet

View file

@ -1,7 +1,7 @@
GNUstep HOWTO
*************
Last Update: 24 October 2001
Last Update: 25 October 2001
This document explains how to build the different components of the
GNUstep core libraries and GNUstep Launchpad.

13
NEWS
View file

@ -6,19 +6,24 @@ The currently released version is `1.2.0pre1'.
Changes in version `1.2.0pre1'
==============================
* The core rules and internals of gnustep-make have been
fundamentally redesigned and rewritten. notably, gnustep-make
now works using only a single recursive sub-make invocation
rather than two, which makes it consistently faster and simpler
in all circumstances.
* The clean rules have been heavily optimized - they no longer use
recursive sub-make invocations at all and so they are really fast.
* Many improvements to java support. Optimized management of nested
classes
* Better conformance to make conventions.
* New variables, fixes to reduce the number of evaluations
* Fixed darwin support
* Support for C++ files.
* Bunches of variables removed or changed for simplification.
* Made use of library installation dir consistent with other
installation.