diff options
author | Brian Paul <[email protected]> | 1999-09-17 00:06:57 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 1999-09-17 00:06:57 +0000 |
commit | f33e6b1e83253147c07404b7e088236dbca04ca6 (patch) | |
tree | 28007cdc41253e495b3547b5e16168f074932a02 /src/glu/mesa | |
parent | 20298685c317512fbfaa8da1996324bf75f9ca32 (diff) |
version symbol changes
Diffstat (limited to 'src/glu/mesa')
-rw-r--r-- | src/glu/mesa/Makefile.BeOS-R4 | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/glu/mesa/Makefile.BeOS-R4 b/src/glu/mesa/Makefile.BeOS-R4 index 13f024f5ec9..20703af89bb 100644 --- a/src/glu/mesa/Makefile.BeOS-R4 +++ b/src/glu/mesa/Makefile.BeOS-R4 @@ -19,9 +19,12 @@ # Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -# $Id: Makefile.BeOS-R4,v 1.3 1999/09/15 15:11:01 brianp Exp $ +# $Id: Makefile.BeOS-R4,v 1.4 1999/09/17 00:06:57 brianp Exp $ # $Log: Makefile.BeOS-R4,v $ +# Revision 1.4 1999/09/17 00:06:57 brianp +# version symbol changes +# # Revision 1.3 1999/09/15 15:11:01 brianp # added third, tiny version number to mklib scripts # @@ -42,6 +45,10 @@ ##### MACROS ##### +GLU_MAJOR = 1 +GLU_MINOR = 2 +GLU_TINY = $(MESA_MAJOR)$(MESA_MINOR)$(MESA_TINY) + VPATH = RCS INCDIR = ../include @@ -66,7 +73,7 @@ targets: $(LIBDIR)/$(GLU_LIB) # Make the library: $(LIBDIR)/$(GLU_LIB): $(OBJECTS) - $(MAKELIB) $(GLU_LIB) $(MAJOR) $(MINOR) $(TINY) -L$(LIBDIR) -lMesaGL $(OBJECTS) + $(MAKELIB) $(GLU_LIB) $(GLU_MAJOR) $(GLU_MINOR) $(GLU_TINY) -L$(LIBDIR) -lGL $(OBJECTS) mv $(GLU_LIB)* $(LIBDIR) include ../Make-config |