Makefile: Don't remove citeproc-hs and pandoc-types with clean.

Added new 'veryclean' target that removes these too.
This commit is contained in:
John MacFarlane 2012-09-26 17:08:31 -07:00
parent 685e281251
commit 90a42fae05

View file

@ -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: