pandoc/Makefile

64 lines
2.1 KiB
Makefile
Raw Normal View History

2017-02-07 19:01:21 +01:00
version?=$(shell grep '^Version:' pandoc.cabal | awk '{print $$2;}')
pandoc=$(shell find dist -name pandoc -type f -exec ls -t {} \; | head -1)
sourcefiles=$(shell find pandoc.hs src test -name '*.hs')
BRANCH?=master
2014-08-13 13:53:20 -07:00
2014-08-16 17:14:33 -07:00
quick:
2016-12-08 11:46:40 +01:00
stack install --flag 'pandoc:embed_data_files' --fast --test --test-arguments='-j4'
2014-08-16 17:14:33 -07:00
2014-08-18 17:40:35 -07:00
full:
2016-12-08 11:46:40 +01:00
stack install --flag 'pandoc:embed_data_files' --test --test-arguments='-j4' --pedantic
stack haddock
2014-08-13 13:53:20 -07:00
test:
2016-12-08 11:46:40 +01:00
stack test --test-arguments='-j4'
2014-08-13 13:53:20 -07:00
bench:
2016-12-08 11:46:40 +01:00
stack bench
2014-08-13 13:53:20 -07:00
refactor:
for f in $(sourcefiles); do echo $$f; hlint --refactor --refactor-options='-i' --cpp-file=`stack path --dist-dir`/build/autogen/cabal_macros.h $$f >/dev/null ; perl -i'' -ne 'if (/./) { print "\n" x $$n, $$_; $$n = 0 } else { $$n++ }' $$f; done
reformat:
for f in $(sourcefiles); do echo $$f; stylish-haskell -i $$f ; done
changes_github:
pandoc --filter extract-changes.hs changelog -t markdown_github | sed -e 's/\\#/#/g' | pbcopy
dist: man/pandoc.1
cabal sdist
rm -rf "pandoc-${version}"
tar xvzf dist/pandoc-${version}.tar.gz
cd pandoc-${version}
stack setup && stack test && cd .. && rm -rf "pandoc-${version}"
debpkg: man/pandoc.1
2016-01-02 16:54:45 -08:00
make -C deb
macospkg: man/pandoc.1
./macos/make_macos_package.sh
2014-08-17 13:34:12 -07:00
winpkg: pandoc-$(version)-windows.msi
pandoc-$(version)-windows.msi:
wget 'https://ci.appveyor.com/api/projects/jgm/pandoc/artifacts/windows/pandoc.msi?branch=$(BRANCH)' -O pandoc.msi && \
osslsigncode sign -pkcs12 ~/Private/ComodoCodeSigning.exp2017.p12 -in pandoc.msi -i http://johnmacfarlane.net/ -t http://timestamp.comodoca.com/ -out $@ -askpass
rm pandoc.msi
2016-07-20 14:12:57 +02:00
man/pandoc.1: MANUAL.txt man/pandoc.1.template
pandoc $< -t man -s --template man/pandoc.1.template \
--filter man/capitalizeHeaders.hs \
--filter man/removeNotes.hs \
--filter man/removeLinks.hs \
2015-11-12 19:51:36 -08:00
--variable version="pandoc $(version)" \
-o $@
download_stats:
curl https://api.github.com/repos/jgm/pandoc/releases | \
2015-07-04 10:29:52 -07:00
jq -r '.[] | .assets | .[] | "\(.download_count)\t\(.name)"'
clean:
2016-12-08 11:46:40 +01:00
stack clean
.PHONY: deps quick full install clean test bench changes_github macospkg dist prof download_stats refactor reformat