mirror of https://github.com/mpv-player/mpv
Make sure all autogenerated .h and .c files exist in the vidix subdirectory
before trying to create object or dependency files there. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26571 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
9a885b71aa
commit
558e30b12c
7
Makefile
7
Makefile
|
@ -713,7 +713,10 @@ VIDIX_PCI_FILES = vidix/pci_dev_ids.c vidix/pci_ids.h vidix/pci_names.c \
|
|||
$(VIDIX_PCI_FILES): vidix/pci.db
|
||||
LC_ALL=C awk -f vidix/pci_db2c.awk $< $(VIDIX_PCIDB)
|
||||
|
||||
vidix/%.o vidix/%.d: $(VIDIX_PCI_FILES)
|
||||
VIDIX_DEPS = $(filter vidix/%,$(SRCS_MPLAYER:.c=.d))
|
||||
VIDIX_OBJS = $(filter vidix/%,$(SRCS_MPLAYER:.c=.o))
|
||||
|
||||
$(VIDIX_DEPS) $(VIDIX_OBJS): $(VIDIX_PCI_FILES)
|
||||
|
||||
liba52/test: liba52/test.c cpudetect.o $(filter liba52/%,$(SRCS_COMMON:.c=.o))
|
||||
|
||||
|
@ -900,6 +903,6 @@ TOOLS/netstream$(EXESUF): TOOLS/netstream.o $(NETSTREAM_DEPS)
|
|||
toolsclean:
|
||||
rm -f $(ALLTOOLS) TOOLS/fastmem*-* TOOLS/realcodecs/*.so.6.0
|
||||
|
||||
-include $(DEPS)
|
||||
#-include $(DEPS)
|
||||
|
||||
.PHONY: all doxygen *install* recurse strip *tools
|
||||
|
|
Loading…
Reference in New Issue