1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
# This file is included in various Makefile's to get version information.
# Compatible with Bourne shell syntax, so it can included there too.
# The gcc version required to compile the library.
GCC_VERSION=4.0.0
# The version number of this release.
MAJOR_VERSION=0
MINOR_VERSION=2
# numeric value should match above
VERSION_NUMBER=1
GNUSTEP_COREBASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}
VERSION=${GNUSTEP_COREBASE_VERSION}
GNUSTEP_COREBASE_FTP_MACHINE=ftp.gnustep.org
GNUSTEP_COREBASE_FTP_DIRECTORY=pub/gnustep/core
GNUSTEP_COREBASE_SNAP_FTP_MACHINE=ftp.gnustep.org
GNUSTEP_COREBASE_SNAP_FTP_DIRECTORY=pub/daily-snapshots
|