mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-24 13:30:21 +02:00
build: .x and .doc files depend on generated includes.
Fixes <https://bugs.gentoo.org/show_bug.cgi?id=590528>. * libguile/Makefile.am (BUILT_INCLUDES): New variable. (BUILT_SOURCES): Put .i and other generated .h to BUILT_INCLUDES. (DOT_X_FILES, EXTRA_DOT_X_FILES, DOT_DOC_FILES, EXTRA_DOT_DOC_FILES): Depend on $(BUILT_INCLUDES), in place of scmconfig.h which is included in $(BUILT_INCLUDES).
This commit is contained in:
parent
86278b4bbd
commit
9eb8c3652d
1 changed files with 5 additions and 5 deletions
|
@ -430,9 +430,9 @@ DOT_I_FILES = vm-i-system.i vm-i-scheme.i vm-i-loader.i
|
||||||
.c.i:
|
.c.i:
|
||||||
$(AM_V_GEN)$(GREP) '^VM_DEFINE' $< > $@
|
$(AM_V_GEN)$(GREP) '^VM_DEFINE' $< > $@
|
||||||
|
|
||||||
BUILT_SOURCES = cpp-E.c cpp-SIG.c libpath.h \
|
BUILT_INCLUDES = $(DOT_I_FILES) scmconfig.h
|
||||||
scmconfig.h \
|
BUILT_SOURCES = cpp-E.c cpp-SIG.c libpath.h $(BUILT_INCLUDES) \
|
||||||
$(DOT_I_FILES) $(DOT_X_FILES) $(EXTRA_DOT_X_FILES)
|
$(DOT_X_FILES) $(EXTRA_DOT_X_FILES)
|
||||||
|
|
||||||
# Force the generation of `guile-procedures.texi' because the top-level
|
# Force the generation of `guile-procedures.texi' because the top-level
|
||||||
# Makefile expects it to be built.
|
# Makefile expects it to be built.
|
||||||
|
@ -735,9 +735,9 @@ SUFFIXES = .x .doc
|
||||||
.c.doc:
|
.c.doc:
|
||||||
$(AM_V_SNARF)./guile-snarf-docs -o $@ $< -- $(snarfcppopts)
|
$(AM_V_SNARF)./guile-snarf-docs -o $@ $< -- $(snarfcppopts)
|
||||||
|
|
||||||
$(DOT_X_FILES) $(EXTRA_DOT_X_FILES): scmconfig.h snarf.h guile-snarf.in version.h
|
$(DOT_X_FILES) $(EXTRA_DOT_X_FILES): $(BUILT_INCLUDES) snarf.h guile-snarf.in version.h
|
||||||
|
|
||||||
$(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES): scmconfig.h snarf.h guile-snarf-docs.in guile_filter_doc_snarfage$(EXEEXT)
|
$(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES): $(BUILT_INCLUDES) snarf.h guile-snarf-docs.in guile_filter_doc_snarfage$(EXEEXT)
|
||||||
|
|
||||||
error.x: cpp-E.c
|
error.x: cpp-E.c
|
||||||
posix.x: cpp-SIG.c
|
posix.x: cpp-SIG.c
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue