diff options
author | Brian Paul <[email protected]> | 1999-09-15 15:11:01 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 1999-09-15 15:11:01 +0000 |
commit | 2f49a40a0777523e9d2bf810a6bdb0400a750a75 (patch) | |
tree | 65922c1f644c0be170f8652a522d9db7ec6feaea /src/glut | |
parent | d9bb106726d3cc83475da536b4dbaeabac3740dd (diff) |
added third, tiny version number to mklib scripts
Diffstat (limited to 'src/glut')
-rw-r--r-- | src/glut/glx/Makefile.X11 | 8 | ||||
-rw-r--r-- | src/glut/glx/Makefile.cygnus | 7 |
2 files changed, 10 insertions, 5 deletions
diff --git a/src/glut/glx/Makefile.X11 b/src/glut/glx/Makefile.X11 index 04676e04899..bcd7155e879 100644 --- a/src/glut/glx/Makefile.X11 +++ b/src/glut/glx/Makefile.X11 @@ -1,4 +1,4 @@ -# $Id: Makefile.X11,v 1.1 1999/08/19 14:00:01 brianp Exp $ +# $Id: Makefile.X11,v 1.2 1999/09/15 15:11:24 brianp Exp $ # Makefile for GLUT # @@ -16,6 +16,9 @@ # $Log: Makefile.X11,v $ +# Revision 1.2 1999/09/15 15:11:24 brianp +# added third, tiny version number to mklib scripts +# # Revision 1.1 1999/08/19 14:00:01 brianp # initial check-in (post crash) # @@ -25,6 +28,7 @@ GLUT_MAJOR = 3 GLUT_MINOR = 7 +GLUT_TINY = 0 VPATH = RCS @@ -104,7 +108,7 @@ targets: $(LIBDIR)/$(GLUT_LIB) # Make the library $(LIBDIR)/$(GLUT_LIB): $(OBJECTS) - $(MAKELIB) $(GLUT_LIB) $(GLUT_MAJOR) $(GLUT_MINOR) $(OBJECTS) + $(MAKELIB) $(GLUT_LIB) $(GLUT_MAJOR) $(GLUT_MINOR) $(GLUT_TINY) $(OBJECTS) mv $(GLUT_LIB)* $(LIBDIR) include ../Make-config diff --git a/src/glut/glx/Makefile.cygnus b/src/glut/glx/Makefile.cygnus index cf41987a55a..5d5fa6912c5 100644 --- a/src/glut/glx/Makefile.cygnus +++ b/src/glut/glx/Makefile.cygnus @@ -1,7 +1,7 @@ # Makefile.cygnus for Cygnus-Win32 target # /Stephane Rehel, November 16 1997 -# Makefile for GLUT 3.6 +# Makefile for GLUT 3.7 # # NOTICE: The OpenGL Utility Toolkit (GLUT) distribution contains source # code published in a book titled "Programming OpenGL for the X Window @@ -19,7 +19,8 @@ ##### MACROS ##### GLUT_MAJOR = 3 -GLUT_MINOR = 6 +GLUT_MINOR = 7 +GLUT_TINY = 0 VPATH = RCS @@ -92,7 +93,7 @@ targets: $(LIBDIR)/$(GLUT_LIB) # Make the library $(LIBDIR)/$(GLUT_LIB): $(OBJECTS) - $(MAKELIB) $(GLUT_LIB) $(GLUT_MAJOR) $(GLUT_MINOR) $(OBJECTS) + $(MAKELIB) $(GLUT_LIB) $(GLUT_MAJOR) $(GLUT_MINOR) $(GLUT_TINY) $(OBJECTS) mv $(GLUT_LIB)* $(LIBDIR) include ../Make-config |