diff options
author | Dave Airlie <airlied@redhat.com> | 2010-08-24 16:10:28 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-08-24 16:10:28 +1000 |
commit | f122dba59a753e8672cb7cc9b9109b81e0ab1b1c (patch) | |
tree | 1808c08508b29094c67cc52e1d97c123ba502c4b /src/glsl/Makefile | |
parent | e5df3cc286fa2607897944d478081014929b38ec (diff) |
glsl: make 'make clean' work properly.
this has make clean remove all the objects.
Diffstat (limited to 'src/glsl/Makefile')
-rw-r--r-- | src/glsl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/Makefile b/src/glsl/Makefile index fef389162a0..3fd06bc9cb5 100644 --- a/src/glsl/Makefile +++ b/src/glsl/Makefile @@ -131,7 +131,7 @@ depend: $(ALL_SOURCES) Makefile # Remove .o and backup files clean: - rm -f $(OBJECTS) lib$(LIBNAME).a depend depend.bak + rm -f $(GLCPP_OBJECTS) $(GLSL2_OBJECTS) $(OBJECTS) lib$(LIBNAME).a depend depend.bak -rm -f $(APPS) # Dummy target |