diff options
author | Keith Whitwell <[email protected]> | 2001-06-27 12:52:12 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2001-06-27 12:52:12 +0000 |
commit | 9c38ae35ebc66cf184068c75dd570e6ad0562496 (patch) | |
tree | 0fba966883d090248fc9878a37ad36407672fd74 /src/mesa/Makefile.X11 | |
parent | acc722d4b890da7ed0ede24751e2bcaf28cc1468 (diff) |
Add -f to rm in make clean to avoid error messages
Diffstat (limited to 'src/mesa/Makefile.X11')
-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 3019df5c0a4..255ab695f44 100644 --- a/src/mesa/Makefile.X11 +++ b/src/mesa/Makefile.X11 @@ -1,4 +1,4 @@ -# $Id: Makefile.X11,v 1.54 2001/06/18 17:26:08 brianp Exp $ +# $Id: Makefile.X11,v 1.55 2001/06/27 12:52:12 keithw Exp $ # Mesa 3-D graphics library # Version: 3.5 @@ -308,7 +308,7 @@ Trace/tr_wrapper.o: Trace/tr_wrapper.c # @echo "Specify a target configuration" clean: - -rm *.o *~ */*.o */*~ *.lo *.la + -rm -f *.o *~ */*.o */*~ *.lo *.la -rm -rf .libs targets: $(LIBDIR)/$(GL_LIB) $(LIBDIR)/$(OSMESA_LIB) |