From aae9a0512300970cb3a7023e992bae6f003e249c Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 21 Aug 2017 01:57:31 +0300 Subject: Don't clean version --- hello/buildfile | 10 +++++++--- mhello/buildfile | 9 +++++++-- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/hello/buildfile b/hello/buildfile index 95ac13d..2c36e08 100644 --- a/hello/buildfile +++ b/hello/buildfile @@ -2,10 +2,14 @@ import libs = libhello%lib{hello} ./: exe{hello} doc{version} file{manifest} -doc{version}: file{manifest} # Generated by the version module. -doc{version}: dist = true +# The version file is auto-generated (by the version module) from manifest. +# Include it in distribution and don't remove when cleaning in src (so that +# clean results in a state identical to distributed). +# +doc{version}: file{manifest} +doc{version}: dist = true +doc{version}: clean = ($src_root != $out_root) exe{hello}: cxx{hello} $libs exe{hello}: test.arguments = World "Planet #345732" exe{hello}: test.output = test.out - diff --git a/mhello/buildfile b/mhello/buildfile index f13dea8..062fef1 100644 --- a/mhello/buildfile +++ b/mhello/buildfile @@ -3,8 +3,13 @@ import libs += libstd-modules%liba{std-modules} ./: exe{hello} doc{version} file{manifest} -doc{version}: file{manifest} # Generated by the version module. -doc{version}: dist = true +# The version file is auto-generated (by the version module) from manifest. +# Include it in distribution and don't remove when cleaning in src (so that +# clean results in a state identical to distributed). +# +doc{version}: file{manifest} +doc{version}: dist = true +doc{version}: clean = ($src_root != $out_root) exe{hello}: cxx{hello} $libs exe{hello}: test.arguments = World "Planet #345732" -- cgit v1.1