aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2012-09-26 17:08:31 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2012-09-26 17:08:31 -0700
commit90a42fae052e8e9dd08605c05c2c3fe000fe9b4e (patch)
treecf9fc38947050d9e810f7ef7e8a6d5cb7d919994 /Makefile
parent685e2812514ab9674df45837186ffcf76547c185 (diff)
downloadpandoc-90a42fae052e8e9dd08605c05c2c3fe000fe9b4e.tar.gz
Makefile: Don't remove citeproc-hs and pandoc-types with clean.
Added new 'veryclean' target that removes these too.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cc0160c53..b23545158 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
# This Makefile is for development only. It requires cabal-dev.
# To get started, do 'make prep' and then 'make' or 'make quick'.
-.PHONY: prep, all, quick, bench, clean, install
+.PHONY: prep, all, quick, bench, clean, veryclean, install
all:
cabal-dev configure --enable-tests --enable-benchmarks && cabal-dev build
@@ -19,6 +19,9 @@ bench:
cabal-dev configure --enable-benchmarks && cabal-dev build
clean:
+ cabal-dev clean
+
+veryclean: clean
cabal-dev clean && rm -rf pandoc-types citeproc-hs
pandoc-types: