mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Version 1.2.0
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@11367 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
9524c1dab7
commit
78e9fbcdf4
6 changed files with 31 additions and 17 deletions
21
ANNOUNCE
21
ANNOUNCE
|
@ -1,7 +1,7 @@
|
|||
Announcement
|
||||
************
|
||||
|
||||
The GNUstep Makefile Package version 1.2.0pre1 is now available.
|
||||
The GNUstep Makefile Package version 1.2.0 is now available.
|
||||
|
||||
What is the GNUstep makefile package?
|
||||
=====================================
|
||||
|
@ -12,22 +12,29 @@ 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.
|
||||
|
||||
Changes in version `1.2.0pre1'
|
||||
==============================
|
||||
Changes in version `1.2.0'
|
||||
==========================
|
||||
|
||||
* 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
|
||||
* File specific compilation flags
|
||||
|
||||
* 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.
|
||||
|
||||
|
@ -36,7 +43,7 @@ Changes in version `1.2.0pre1'
|
|||
Obtaining gnustep-make
|
||||
======================
|
||||
|
||||
You can get the gstep-make-1.2.0pre1.tar.gz distribution file at
|
||||
You can get the gstep-make-1.2.0.tar.gz distribution file at
|
||||
<ftp://ftp.gnustep.org/pub/gnustep/core>
|
||||
|
||||
Please send bug reports to <bug-gnustep@gnu.org>.
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2001-11-11 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Version: 1.2.0
|
||||
|
||||
Fri Nov 9 13:34:50 2001 Nicola Pero <nicola@brainstorm.co.uk>
|
||||
|
||||
* opentool.in: Fixed (again!) the fact that if there is both a
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
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.0}
|
||||
|
||||
@itemize @bullet
|
||||
@item The core rules and internals of gnustep-make have been fundamentally
|
||||
|
@ -20,6 +20,7 @@ it consistently faster and simpler in all circumstances.
|
|||
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 File specific compilation flags
|
||||
@item Fixed darwin support
|
||||
@item Support for C++ files.
|
||||
@item Made use of library installation dir consistent with other installation.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
GNUstep HOWTO
|
||||
*************
|
||||
|
||||
Last Update: 25 October 2001
|
||||
Last Update: 11 November 2001
|
||||
|
||||
This document explains how to build the different components of the
|
||||
GNUstep core libraries and GNUstep Launchpad.
|
||||
|
|
16
NEWS
16
NEWS
|
@ -1,16 +1,16 @@
|
|||
NEWS
|
||||
****
|
||||
|
||||
The currently released version is `1.2.0pre1'.
|
||||
The currently released version is `1.2.0'.
|
||||
|
||||
Changes in version `1.2.0pre1'
|
||||
==============================
|
||||
Changes in version `1.2.0'
|
||||
==========================
|
||||
|
||||
* 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.
|
||||
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.
|
||||
|
@ -20,6 +20,8 @@ Changes in version `1.2.0pre1'
|
|||
|
||||
* Better conformance to make conventions.
|
||||
|
||||
* File specific compilation flags
|
||||
|
||||
* Fixed darwin support
|
||||
|
||||
* Support for C++ files.
|
||||
|
|
2
Version
2
Version
|
@ -4,6 +4,6 @@
|
|||
# The version number of this release.
|
||||
GNUSTEP_MAKE_MAJOR_VERSION=1
|
||||
GNUSTEP_MAKE_MINOR_VERSION=2
|
||||
GNUSTEP_MAKE_SUBMINOR_VERSION=0pre1
|
||||
GNUSTEP_MAKE_SUBMINOR_VERSION=0
|
||||
GNUSTEP_MAKE_VERSION=${GNUSTEP_MAKE_MAJOR_VERSION}.${GNUSTEP_MAKE_MINOR_VERSION}.${GNUSTEP_MAKE_SUBMINOR_VERSION}
|
||||
|
||||
|
|
Loading…
Reference in a new issue