19d86132a8
Removed tools/refactor.sh.
63 lines
2.1 KiB
Makefile
63 lines
2.1 KiB
Makefile
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
|
|
|
|
quick:
|
|
stack install --flag 'pandoc:embed_data_files' --fast --test --test-arguments='-j4'
|
|
|
|
full:
|
|
stack install --flag 'pandoc:embed_data_files' --test --test-arguments='-j4' --pedantic
|
|
stack haddock
|
|
|
|
test:
|
|
stack test --test-arguments='-j4'
|
|
|
|
bench:
|
|
stack bench
|
|
|
|
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
|
|
make -C deb
|
|
|
|
macospkg: man/pandoc.1
|
|
./macos/make_macos_package.sh
|
|
|
|
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
|
|
|
|
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 \
|
|
--variable version="pandoc $(version)" \
|
|
-o $@
|
|
|
|
download_stats:
|
|
curl https://api.github.com/repos/jgm/pandoc/releases | \
|
|
jq -r '.[] | .assets | .[] | "\(.download_count)\t\(.name)"'
|
|
|
|
clean:
|
|
stack clean
|
|
|
|
.PHONY: deps quick full install clean test bench changes_github macospkg dist prof download_stats refactor reformat
|