diff options
author | Brian Paul <[email protected]> | 1999-09-15 16:31:31 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 1999-09-15 16:31:31 +0000 |
commit | 212e625c24be177f488054c86647ac374e61eed5 (patch) | |
tree | 31500f58d43efeeae3d8ff6e996bc7117137091e /src/mesa/Makefile.X11 | |
parent | cd65179540eacb2167f48d4f58453283fb5050c4 (diff) |
new version number symbols
Diffstat (limited to 'src/mesa/Makefile.X11')
-rw-r--r-- | src/mesa/Makefile.X11 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mesa/Makefile.X11 b/src/mesa/Makefile.X11 index 790e7881bc3..704963d1917 100644 --- a/src/mesa/Makefile.X11 +++ b/src/mesa/Makefile.X11 @@ -1,4 +1,4 @@ -# $Id: Makefile.X11,v 1.3 1999/09/15 15:11:52 brianp Exp $ +# $Id: Makefile.X11,v 1.4 1999/09/15 16:31:54 brianp Exp $ # Mesa 3-D graphics library # Version: 3.1 @@ -9,6 +9,10 @@ ##### MACROS ##### +GL_MAJOR = 1 +GL_MINOR = 2 +GL_TINY = $(MESA_MAJOR)$(MESA_MINOR)$(MESA_TINY) + VPATH = RCS INCDIR = ../include @@ -222,7 +226,7 @@ targets: $(LIBDIR)/$(GL_LIB) # Make the library $(LIBDIR)/$(GL_LIB): $(OBJECTS) - $(MAKELIB) $(GL_LIB) $(MAJOR) $(MINOR) $(TINY) $(OBJECTS) + $(MAKELIB) $(GL_LIB) $(GL_MAJOR) $(GL_MINOR) $(GL_TINY) $(OBJECTS) rm -f $(LIBDIR)/$(GL_LIB)* mv $(GL_LIB)* $(LIBDIR) |