Skip to content

Commit 568d915

Browse files
committed
tests/Makefile: declare .i.hs and .d.hs files as precious
1 parent 59229c2 commit 568d915

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
/examples/*.bin
1414
/examples/*.exe
1515
/old-*/
16-
/tests/*.[dgn].hs
17-
/tests/*.[dgn].bin
18-
/tests/*.[dgn].exe
16+
/tests/*.[dign].hs
17+
/tests/*.[dign].bin
18+
/tests/*.[dign].exe
1919
.cabal-sandbox
2020
.stack-work
2121
cabal.sandbox.config

tests/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ WARNS_DEP_GHC_GTEQ_9_8:=$(shell if [ $(GHC_MAJOR_VERSION) -gt 9 -o $(GHC_MAJOR_V
4141

4242
HC_OPTS=-Wall $(WARNS_DEP_GHC_GTEQ_9_8) -fwarn-incomplete-uni-patterns -Werror
4343

44-
.PRECIOUS: %.n.hs %.g.hs %.o %.exe %.bin
44+
.PRECIOUS: %.d.hs %.i.hs %.g.hs %.n.hs %.o %.exe %.bin
4545

4646
ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
4747
HS_PROG_EXT = .exe

0 commit comments

Comments
 (0)