~ chicken-core (chicken-5) 42a826354eda16b7d02f0481c78c0449ae3c39e7
commit 42a826354eda16b7d02f0481c78c0449ae3c39e7 Author: felix <felix@call-with-current-continuation.org> AuthorDate: Mon Nov 7 13:25:34 2011 +0100 Commit: Christian Kellermann <ckeen@pestilenz.org> CommitDate: Mon Nov 7 13:52:30 2011 +0100 don't remove build-info files on make confclean or it is not possible to build from a tarball without preinstalled chicken Signed-off-by: Christian Kellermann <ckeen@pestilenz.org> diff --git a/rules.make b/rules.make index 7383e7f8..929b0a31 100644 --- a/rules.make +++ b/rules.make @@ -634,11 +634,12 @@ endif confclean: -$(REMOVE_COMMAND) $(REMOVE_COMMAND_OPTIONS) \ - chicken-config.h chicken-defaults.h chicken-install.rc chicken-uninstall.rc \ - buildtag.h buildid buildbranch + chicken-config.h chicken-defaults.h chicken-install.rc chicken-uninstall.rc spotless: distclean testclean - -$(REMOVE_COMMAND) $(REMOVE_COMMAND_OPTIONS) $(DISTFILES) + -$(REMOVE_COMMAND) $(REMOVE_COMMAND_OPTIONS) $(DISTFILES) \ + buildtag.h buildid buildbranch + distclean: clean confcleanTrap