1#    Copyright (C) 1997-2003 artofcode LLC. All rights reserved.
2#
3# This program is free software; you can redistribute it and/or modify it
4# under the terms of the GNU General Public License as published by the
5# Free Software Foundation; either version 2 of the License, or (at your
6# option) any later version.
7#
8# This program is distributed in the hope that it will be useful, but
9# WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
11# Public License for more details.
12#
13# You should have received a copy of the GNU General Public License along
14# with this program; if not, write to the Free Software Foundation, Inc.,
15# 59 Temple Place, Suite 330, Boston, MA, 02111-1307.
16
17
18# $Id: version.mak,v 1.36.2.9.2.6 2003/05/17 14:39:00 giles Exp $
19# Makefile fragment containing the current revision identification.
20
21# Major and minor version numbers.
22# MINOR0 is different from MINOR only if MINOR is a single digit.
23GS_VERSION_MAJOR=7
24GS_VERSION_MINOR=07
25GS_VERSION_MINOR0=07
26# Revision date: year x 10000 + month x 100 + day.
27GS_REVISIONDATE=20030517
28# Derived values
29GS_VERSION=$(GS_VERSION_MAJOR)$(GS_VERSION_MINOR0)
30GS_DOT_VERSION=$(GS_VERSION_MAJOR).$(GS_VERSION_MINOR)
31GS_REVISION=$(GS_VERSION)
32