summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bbf6b6165..9afa934bd 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ BASELINECMD=
else
BASELINECMD=--baseline $(BASELINE)
endif
-GHCOPTS=-fdiagnostics-color=always -j4 +RTS -A8m -RTS
+GHCOPTS=-fwrite-ide-info -fdiagnostics-color=always -j4 +RTS -A8m -RTS
WEBSITE=../../web/pandoc.org
REVISION?=1
BENCHARGS?=--csv bench_$(TIMESTAMP).csv $(BASELINECMD) --timeout=6 +RTS -T --nonmoving-gc -RTS $(if $(PATTERN),--pattern "$(PATTERN)",)
@@ -92,6 +92,10 @@ coverage: ## code coverage information
open coverage/hpc_index.html
.PHONY: coverage
+weeder: ## run weeder to find dead code
+ weeder
+.PHONY: weeder
+
transitive-deps: ## print transitive dependencies
cabal-plan topo | sort | sed -e 's/-[0-9]\..*//'
.PHONY: transitive-deps