Commit 2a3730b0 authored by diego's avatar diego

Remove all dependency files on distclean.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12802 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b8f8e05f
...@@ -67,6 +67,7 @@ depend dep: $(DEPS) ...@@ -67,6 +67,7 @@ depend dep: $(DEPS)
CLEANSUFFIXES = *.o *~ *.ho CLEANSUFFIXES = *.o *~ *.ho
LIBSUFFIXES = *.a *.lib *.so *.so.* *.dylib *.dll *.def *.dll.a *.exp *.map LIBSUFFIXES = *.a *.lib *.so *.so.* *.dylib *.dll *.def *.dll.a *.exp *.map
DISTCLEANSUFFIXES = *.d
define RULES define RULES
$(SUBDIR)%: $(SUBDIR)%.o $(LIBNAME) $(SUBDIR)%: $(SUBDIR)%.o $(LIBNAME)
...@@ -80,7 +81,8 @@ clean:: ...@@ -80,7 +81,8 @@ clean::
$(addprefix $(SUBDIR), $(foreach suffix,$(CLEANSUFFIXES),$(addsuffix /$(suffix),$(DIRS)))) $(addprefix $(SUBDIR), $(foreach suffix,$(CLEANSUFFIXES),$(addsuffix /$(suffix),$(DIRS))))
distclean:: clean distclean:: clean
rm -f $(DEPS) rm -f $(addprefix $(SUBDIR),$(DISTCLEANSUFFIXES)) \
$(addprefix $(SUBDIR), $(foreach suffix,$(DISTCLEANSUFFIXES),$(addsuffix /$(suffix),$(DIRS))))
endef endef
$(eval $(RULES)) $(eval $(RULES))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment