[commit: nofib] master: CLEAN_FILES for `reverse-complement` (8b3c959)
git at git.haskell.org
git at git.haskell.org
Sun Dec 30 17:49:36 UTC 2018
Repository : ssh://git@git.haskell.org/nofib
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/8b3c9596440ba81db732dcb30b88503ec03c9989/nofib
>---------------------------------------------------------------
commit 8b3c9596440ba81db732dcb30b88503ec03c9989
Author: Sebastian Graf <sebastian.graf at kit.edu>
Date: Sat Dec 29 20:13:44 2018 +0100
CLEAN_FILES for `reverse-complement`
Summary:
`reverse-complement` didn't have its `CLEAN_FILES` set.
That led to incomplete rebuilds of binaries and changes in
i.e. `FAST_OPTS` taking no effect, despite a prior `make clean`.
Reviewers: osa1, AndreasK, bgamari, O26 nofib
Differential Revision: https://phabricator.haskell.org/D5467
>---------------------------------------------------------------
8b3c9596440ba81db732dcb30b88503ec03c9989
shootout/reverse-complement/Makefile | 2 ++
1 file changed, 2 insertions(+)
diff --git a/shootout/reverse-complement/Makefile b/shootout/reverse-complement/Makefile
index d9fcc14..e3b72b7 100644
--- a/shootout/reverse-complement/Makefile
+++ b/shootout/reverse-complement/Makefile
@@ -5,6 +5,8 @@ include $(TOP)/mk/boilerplate.mk
# we don't want to include revcomp-c.c
SRCS = Main.hs
+CLEAN_FILES += fasta-c revcomp-c reverse-complement *stdout *stdin
+
# These values are only used in this file. They are ignored by the
# executable itself.
FAST_OPTS = 250000
More information about the ghc-commits
mailing list