Parallel build fix for fcalias.h and fcaliastail.h

These are built from the same script, but creating a single dependency rule
caused parallel make to run the script twice.
This commit is contained in:
Keith Packard 2006-09-06 17:43:08 -07:00
parent 8e0b03f550
commit 08bef68701
1 changed files with 3 additions and 1 deletions

View File

@ -121,7 +121,9 @@ PUBLIC_FILES = \
$(top_srcdir)/fontconfig/fcfreetype.h \ $(top_srcdir)/fontconfig/fcfreetype.h \
$(top_srcdir)/fontconfig/fcprivate.h $(top_srcdir)/fontconfig/fcprivate.h
$(ALIAS_FILES): $(top_srcdir)/src/makealias $(PUBLIC_FILES) fcaliastail.h: fcalias.h
fcalias.h: $(top_srcdir)/src/makealias $(PUBLIC_FILES)
sh $(top_srcdir)/src/makealias "$(top_srcdir)/src" $(PUBLIC_FILES) sh $(top_srcdir)/src/makealias "$(top_srcdir)/src" $(PUBLIC_FILES)
CLEANFILES := $(ALIAS_FILES) CLEANFILES := $(ALIAS_FILES)