comparison Makefile @ 26872:af5174b932ad

Revert declaration .NOTPARALLEL. Unfortunately this special target does not have the expected sane semantics, but has a global effect instead...
author diego
date Tue, 27 May 2008 16:46:30 +0000
parents 626865450a91
children 73921138ff30
comparison
equal deleted inserted replaced
26871:626865450a91 26872:af5174b932ad
788 vidix/pci_names.h vidix/pci_vendors.h 788 vidix/pci_names.h vidix/pci_vendors.h
789 789
790 $(VIDIX_PCI_FILES): vidix/pci.db 790 $(VIDIX_PCI_FILES): vidix/pci.db
791 LC_ALL=C awk -f vidix/pci_db2c.awk $< $(VIDIX_PCIDB) 791 LC_ALL=C awk -f vidix/pci_db2c.awk $< $(VIDIX_PCIDB)
792 792
793 # Make sure that the awk processes do not step on each other's toes.
794 .NOTPARALLEL: $(VIDIX_PCI_FILES)
795
796 VIDIX_DEPS = $(filter vidix/%,$(SRCS_MPLAYER:.c=.d)) 793 VIDIX_DEPS = $(filter vidix/%,$(SRCS_MPLAYER:.c=.d))
797 VIDIX_OBJS = $(filter vidix/%,$(SRCS_MPLAYER:.c=.o)) 794 VIDIX_OBJS = $(filter vidix/%,$(SRCS_MPLAYER:.c=.o))
798 795
799 $(VIDIX_DEPS) $(VIDIX_OBJS): $(VIDIX_PCI_FILES) 796 $(VIDIX_DEPS) $(VIDIX_OBJS): $(VIDIX_PCI_FILES)
800 797