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/glx/Makefile.cygnus | |
parent | d9bb106726d3cc83475da536b4dbaeabac3740dd (diff) |
added third, tiny version number to mklib scripts
Diffstat (limited to 'src/glut/glx/Makefile.cygnus')
-rw-r--r-- | src/glut/glx/Makefile.cygnus | 7 |
1 files changed, 4 insertions, 3 deletions
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 |