diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-04-13 10:37:30 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-04-13 10:37:30 +0000 |
commit | e825656f1df41da334b0be699cb1f3b5ec9b3ffb (patch) | |
tree | 89b7371fe3ec19e2205e7796a17c9d6be495016b /common.mak | |
parent | 95d2afec0f458ecb4ee3181b28096b3a1fd5f135 (diff) | |
download | ffmpeg-e825656f1df41da334b0be699cb1f3b5ec9b3ffb.tar.gz |
Clear DIRS variable in common.mak, so it does not have to be cleared in
each subdirectory Makefile.
Originally committed as revision 12803 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r-- | common.mak | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common.mak b/common.mak index 2ec0dffd13..1fbdf2b489 100644 --- a/common.mak +++ b/common.mak @@ -87,6 +87,9 @@ endef $(eval $(RULES)) +# Clear DIRS variable so that it is not used in other subdirectories. +DIRS = + tests: $(TESTS) -include $(DEPS) |