mirror of
https://github.com/gnustep/tools-make.git
synced 2025-05-06 03:40:44 +00:00
Updated
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@11252 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
519ed2ec6c
commit
c67fc12da3
5 changed files with 48 additions and 10 deletions
|
@ -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>
|
Thu Oct 25 10:41:04 2001 Nicola Pero <nicola@brainstorm.co.uk>
|
||||||
|
|
||||||
* configure.in: Output a message displaying the version of
|
* configure.in: Output a message displaying the version of
|
||||||
|
|
25
Documentation/announce.texi
Normal file
25
Documentation/announce.texi
Normal 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}.
|
|
@ -1,27 +1,33 @@
|
||||||
@c -*-texinfo-*-
|
@c -*-texinfo-*-
|
||||||
@ifclear ANNOUNCE-ONLY
|
@ifclear ANNOUNCE-ONLY
|
||||||
@chapter NEWS
|
@chapter NEWS
|
||||||
@end ifclear
|
|
||||||
|
|
||||||
@ifset TEXT-ONLY
|
@ifset TEXT-ONLY
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@end ifset
|
@end ifset
|
||||||
|
|
||||||
The currently released version is @samp{@value{GNUSTEP-MAKE-VERSION}}.
|
The currently released version is @samp{@value{GNUSTEP-MAKE-VERSION}}.
|
||||||
|
@end ifclear
|
||||||
|
|
||||||
@section Changes in version @samp{1.2.0pre1}
|
@section Changes in version @samp{1.2.0pre1}
|
||||||
|
|
||||||
@itemize @bullet
|
@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 Many improvements to java support. Optimized management of nested classes
|
||||||
@item Better conformance to make conventions.
|
@item Better conformance to make conventions.
|
||||||
@item New variables, fixes to reduce the number of evaluations
|
|
||||||
@item Fixed darwin support
|
@item Fixed darwin support
|
||||||
@item Support for C++ files.
|
@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 Made use of library installation dir consistent with other installation.
|
||||||
@item Much improved Windows path support
|
@item Much improved Windows path support
|
||||||
@end itemize
|
@end itemize
|
||||||
|
|
||||||
|
@ifclear ANNOUNCE-ONLY
|
||||||
|
|
||||||
@section Changes in version @samp{1.0.1}
|
@section Changes in version @samp{1.0.1}
|
||||||
|
|
||||||
@itemize @bullet
|
@itemize @bullet
|
||||||
|
@ -31,8 +37,6 @@ The currently released version is @samp{@value{GNUSTEP-MAKE-VERSION}}.
|
||||||
@item Fixes to run on FreeBSD, Solaris.
|
@item Fixes to run on FreeBSD, Solaris.
|
||||||
@end itemize
|
@end itemize
|
||||||
|
|
||||||
@ifclear ANNOUNCE-ONLY
|
|
||||||
|
|
||||||
@section Changes in version @samp{1.0.0}
|
@section Changes in version @samp{1.0.0}
|
||||||
|
|
||||||
@itemize @bullet
|
@itemize @bullet
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
GNUstep HOWTO
|
GNUstep HOWTO
|
||||||
*************
|
*************
|
||||||
|
|
||||||
Last Update: 24 October 2001
|
Last Update: 25 October 2001
|
||||||
|
|
||||||
This document explains how to build the different components of the
|
This document explains how to build the different components of the
|
||||||
GNUstep core libraries and GNUstep Launchpad.
|
GNUstep core libraries and GNUstep Launchpad.
|
||||||
|
|
13
NEWS
13
NEWS
|
@ -6,19 +6,24 @@ The currently released version is `1.2.0pre1'.
|
||||||
Changes in version `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
|
* Many improvements to java support. Optimized management of nested
|
||||||
classes
|
classes
|
||||||
|
|
||||||
* Better conformance to make conventions.
|
* Better conformance to make conventions.
|
||||||
|
|
||||||
* New variables, fixes to reduce the number of evaluations
|
|
||||||
|
|
||||||
* Fixed darwin support
|
* Fixed darwin support
|
||||||
|
|
||||||
* Support for C++ files.
|
* Support for C++ files.
|
||||||
|
|
||||||
* Bunches of variables removed or changed for simplification.
|
|
||||||
|
|
||||||
* Made use of library installation dir consistent with other
|
* Made use of library installation dir consistent with other
|
||||||
installation.
|
installation.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue