# HG changeset patch # User John W. Eaton # Date 1436890803 14400 # Node ID 86299d2fbf87cd2faa9013d7bf983adf4f875bea # Parent 10f67e9d1e70e4eb23af61608a9a7eb7cb922279 * libinterp/module.mk: Don't add BUILT_DISTFILES to MAINTAINERCLEANFILES. diff -r 10f67e9d1e70 -r 86299d2fbf87 libinterp/module.mk --- a/libinterp/module.mk Tue Jul 14 11:34:55 2015 -0400 +++ b/libinterp/module.mk Tue Jul 14 12:20:03 2015 -0400 @@ -58,7 +58,7 @@ libinterp/corefcn/oct-tex-parser.yy \ libinterp/parse-tree/oct-parse.yy -BUILT_DISTFILES += \ +LIBINTERP_BUILT_DISTFILES = \ $(GENERATED_PARSER_FILES) \ libinterp/corefcn/oct-tex-parser.h \ libinterp/corefcn/oct-tex-symbols.cc \ @@ -67,7 +67,7 @@ ## Files that are created during build process and installed, ## BUT not distributed in tarball. -BUILT_NODISTFILES += \ +LIBINTERP_BUILT_NODISTFILES = \ libinterp/corefcn/mxarray.h \ libinterp/corefcn/oct-errno.cc \ libinterp/corefcn/defaults.h \ @@ -95,7 +95,7 @@ libinterp/mkops \ libinterp/oct-conf.in.h \ libinterp/version.in.h \ - $(BUILT_DISTFILES) + $(LIBINTERP_BUILT_DISTFILES) octinclude_HEADERS += \ libinterp/corefcn/graphics-props.cc \ @@ -367,10 +367,12 @@ DISTCLEANFILES += \ libinterp/.DOCSTRINGS \ libinterp/DOCSTRINGS \ - $(BUILT_NODISTFILES) \ + $(LIBINTERP_BUILT_NODISTFILES) \ $(OCT_FILES) \ $(LIBINTERP_TST_FILES) MAINTAINERCLEANFILES += \ - $(BUILT_DISTFILES) + $(LIBINTERP_BUILT_DISTFILES) +BUILT_DISTFILES += $(LIBINTERP_BUILT_DISTFILES) +BUILT_NODISTFILES += $(LIBINTERP_BUILT_NODISTFILES)