diff options
| author | Brian Paul <brian.paul@tungstengraphics.com> | 2003-10-27 18:24:37 +0000 | 
|---|---|---|
| committer | Brian Paul <brian.paul@tungstengraphics.com> | 2003-10-27 18:24:37 +0000 | 
| commit | 73d4f69283cba75e85f5058e646d5fd2092f2f66 (patch) | |
| tree | dec970b6156f69d70ad17cb44ffd6515f5a72947 /src | |
| parent | 65e2ab3903a3b5f9e42c4be19fdde8eb757ea242 (diff) | |
Pass $(MKLIB_OPTIONS) to mklib script to allow setting extra options.
Diffstat (limited to 'src')
| -rw-r--r-- | src/mesa/Makefile.X11 | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/mesa/Makefile.X11 b/src/mesa/Makefile.X11 index dd4336e6d0..4e00648e45 100644 --- a/src/mesa/Makefile.X11 +++ b/src/mesa/Makefile.X11 @@ -307,7 +307,7 @@ targets: $(LIBDIR)/$(GL_LIB) $(LIBDIR)/$(OSMESA_LIB) $(LIBMESA)  $(LIBDIR)/$(GL_LIB): $(OBJECTS)  	$(TOP)/bin/mklib -o $(GL_LIB_NAME) -major $(GL_MAJOR) \  		-minor $(GL_MINOR) -patch $(GL_TINY) -install $(LIBDIR) \ -		$(GL_LIB_DEPS) $(OBJECTS) +		$(MKLIB_OPTIONS) $(GL_LIB_DEPS) $(OBJECTS)  # Make the OSMesa library @@ -316,7 +316,7 @@ $(LIBDIR)/$(OSMESA_LIB): $(OSMESA_OBJECTS)  		$(TOP)/bin/mklib -o $(OSMESA_LIB_NAME) -major $(MESA_MAJOR) \  			-minor $(MESA_MINOR) -patch $(GL_TINY) -L$(LIBDIR) \  			-l$(GL_LIB_NAME) -install $(LIBDIR) \ -			$(OSMESA_OBJECTS) ; \ +			$(MKLIB_OPTIONS) $(OSMESA_OBJECTS) ; \  	fi | 
