diff options
author | Diego Biurrun <diego@biurrun.de> | 2010-08-17 15:02:33 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2010-08-17 15:02:33 +0000 |
commit | 6fa5a91b144fb32a3a1552ca40375b60aaa13d54 (patch) | |
tree | c8b813d005e5e318ffde270d110f44879497584f | |
parent | a1e171dfee17a9dcc7c5907b16d5c1a2748bfe73 (diff) | |
download | ffmpeg-6fa5a91b144fb32a3a1552ca40375b60aaa13d54.tar.gz |
Remove dep/depend targets and related variables.
We no longer create dependency files directly, so the rules are now pointless.
Originally committed as revision 24807 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | common.mak | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/common.mak b/common.mak index 2c20f13705..38019615eb 100644 --- a/common.mak +++ b/common.mak @@ -106,11 +106,8 @@ $(HOSTOBJS): %.o: %.c $(HOSTPROGS): %$(HOSTEXESUF): %.o $(HOSTCC) $(HOSTLDFLAGS) -o $@ $< $(HOSTLIBS) -DEPS := $(OBJS:.o=.d) -depend dep: $(DEPS) - CLEANSUFFIXES = *.d *.o *~ *.ho *.map *.ver DISTCLEANSUFFIXES = *.pc LIBSUFFIXES = *.a *.lib *.so *.so.* *.dylib *.dll *.def *.dll.a *.exp --include $(wildcard $(DEPS)) +-include $(wildcard $(OBJS:.o=.d)) |