summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-09-20 20:26:04 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:17:05 +0200
commitbaf7744d5376afdd542039c4dbac077364687686 (patch)
tree2d44b1345ea2786df255a2e06538756c25bb6ee1 /Makefile
parent908b80e21ca6a215819a205ce2153ce5de7df623 (diff)
downloadmpv-baf7744d5376afdd542039c4dbac077364687686.tar.bz2
mpv-baf7744d5376afdd542039c4dbac077364687686.tar.xz
Makefile: Remove remnants of explicit dependency file generation
Dependency files are now generated as a side effect of compilation, and have no independent creation rules. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32327 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 34fba9af90..8c5855b7a5 100644
--- a/Makefile
+++ b/Makefile
@@ -752,7 +752,7 @@ checkheaders: $(ALLHEADERS:.h=.ho)
# Make sure all generated header files are created.
codec-cfg.d codec-cfg.o: codecs.conf.h
-$(call ADDSUFFIXES,.d .o,mpcommon osdep/mplayer-rc): version.h
+mpcommon.o osdep/mplayer-rc.o: version.h
# Files that depend on libswscale internals
libmpcodecs/vf_palette.o: CFLAGS := -I$(FFMPEG_SOURCE_PATH) $(CFLAGS)
@@ -785,10 +785,9 @@ VIDIX_PCI_FILES = vidix/pci_dev_ids.c vidix/pci_ids.h vidix/pci_names.c \
$(VIDIX_PCI_FILES): vidix/pci_db2c.awk vidix/pci.db
awk -f $^ $(VIDIX_PCIDB)
-VIDIX_DEPS = $(filter vidix/%,$(SRCS_MPLAYER:.c=.d))
VIDIX_OBJS = $(filter vidix/%,$(SRCS_MPLAYER:.c=.o))
-$(VIDIX_DEPS) $(VIDIX_OBJS): $(VIDIX_PCI_FILES)
+$(VIDIX_OBJS): $(VIDIX_PCI_FILES)