diff options
author | Marcin Slusarz <[email protected]> | 2012-04-01 17:31:51 +0200 |
---|---|---|
committer | Marcin Slusarz <[email protected]> | 2012-04-01 17:42:48 +0200 |
commit | 68e4c83ffa9319c934a96ca1daf25e81b78a6d90 (patch) | |
tree | 51d33c31a99e290a5a5c40672dfc35b8be2e7d01 | |
parent | a45247fb1b8c30c5be21c3baf84943920ae17bfb (diff) |
targets/{xvmc,vdpau,va}: remove all objects on make clean
-rw-r--r-- | src/gallium/targets/Makefile.va | 2 | ||||
-rw-r--r-- | src/gallium/targets/Makefile.vdpau | 2 | ||||
-rw-r--r-- | src/gallium/targets/Makefile.xvmc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/targets/Makefile.va b/src/gallium/targets/Makefile.va index 884b59d224e..a6e775c1477 100644 --- a/src/gallium/targets/Makefile.va +++ b/src/gallium/targets/Makefile.va @@ -63,7 +63,7 @@ tags: # Remove .o and backup files clean: - -rm -f *.o *~ *.so $(SYMLINKS) + -rm -f $(OBJECTS) *~ *.so $(SYMLINKS) -rm -f depend depend.bak install: default diff --git a/src/gallium/targets/Makefile.vdpau b/src/gallium/targets/Makefile.vdpau index a9e7a9c9549..fba3cdf5d83 100644 --- a/src/gallium/targets/Makefile.vdpau +++ b/src/gallium/targets/Makefile.vdpau @@ -63,7 +63,7 @@ tags: # Remove .o and backup files clean: - -rm -f *.o *~ *.so $(SYMLINKS) + -rm -f $(OBJECTS) *~ *.so $(SYMLINKS) -rm -f depend depend.bak install: default diff --git a/src/gallium/targets/Makefile.xvmc b/src/gallium/targets/Makefile.xvmc index 217481e48e8..ad9dd2d4817 100644 --- a/src/gallium/targets/Makefile.xvmc +++ b/src/gallium/targets/Makefile.xvmc @@ -63,7 +63,7 @@ tags: # Remove .o and backup files clean: - -rm -f *.o *~ *.so $(SYMLINKS) + -rm -f $(OBJECTS) *~ *.so $(SYMLINKS) -rm -f depend depend.bak install: default |