diff options
author | Jon Smirl <[email protected]> | 2003-10-20 02:17:32 +0000 |
---|---|---|
committer | Jon Smirl <[email protected]> | 2003-10-20 02:17:32 +0000 |
commit | 3e4a50f0d28f90791f1c2eec2ece660c53dd4845 (patch) | |
tree | 75103774908193874221a09dfefc744448147b02 /src/mesa/drivers/dri/radeon | |
parent | 0f85b91c8ace21c25329b455e041bb39218c812f (diff) |
Fix Makefiles to copy lib to $(TOP)/lib if missing
Diffstat (limited to 'src/mesa/drivers/dri/radeon')
-rw-r--r-- | src/mesa/drivers/dri/radeon/Makefile.X11 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/radeon/Makefile.X11 b/src/mesa/drivers/dri/radeon/Makefile.X11 index b73abe8f51b..57ef24e8fba 100644 --- a/src/mesa/drivers/dri/radeon/Makefile.X11 +++ b/src/mesa/drivers/dri/radeon/Makefile.X11 @@ -1,4 +1,4 @@ -# $Id: Makefile.X11,v 1.1 2003/08/22 20:11:45 brianp Exp $ +# $Id: Makefile.X11,v 1.2 2003/10/20 02:17:33 jonsmirl Exp $ # Mesa 3-D graphics library # Version: 5.0 @@ -132,6 +132,10 @@ $(TARGET): $(OBJECTS) $(MESA_MODULES) $(WINOBJ) Makefile.X11 rm -f $(TOP)/lib/$(TARGET) && \ install $(TARGET) $(TOP)/lib/$(TARGET) +$(TOP)/lib/$(TARGET): $(TARGET) + rm -f $(TOP)/lib/$(TARGET) && \ + install $(TARGET) $(TOP)/lib/$(TARGET) + # Run 'make -f Makefile.X11 dep' to update the dependencies if you change # what's included by any source file. depend: $(C_SOURCES) $(ASM_SOURCES) |