changeset 20381:86299d2fbf87

* libinterp/module.mk: Don't add BUILT_DISTFILES to MAINTAINERCLEANFILES.
author John W. Eaton <jwe@octave.org>
date Tue, 14 Jul 2015 12:20:03 -0400
parents 10f67e9d1e70
children 1ea2d7d8abc7
files libinterp/module.mk
diffstat 1 files changed, 7 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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)