2017-02-07 19:01:21 +01:00
|
|
|
version?=$(shell grep '^Version:' pandoc.cabal | awk '{print $$2;}')
|
2015-07-01 20:21:34 +02:00
|
|
|
pandoc=$(shell find dist -name pandoc -type f -exec ls -t {} \; | head -1)
|
2017-03-04 12:49:14 +01:00
|
|
|
sourcefiles=$(shell find pandoc.hs src test -name '*.hs')
|
2017-02-05 12:15:02 +01:00
|
|
|
BRANCH?=master
|
2014-08-13 22:53:20 +02:00
|
|
|
|
2014-08-17 02:14:33 +02:00
|
|
|
quick:
|
2017-03-14 17:05:36 +01:00
|
|
|
stack install --flag 'pandoc:embed_data_files' --fast --test --test-arguments='-j4 --hide-successes'
|
2014-08-17 02:14:33 +02:00
|
|
|
|
2014-08-19 02:40:35 +02: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 22:53:20 +02:00
|
|
|
|
2017-03-15 17:22:07 +01:00
|
|
|
# Note: to accept current results of golden tests,
|
|
|
|
# make test TESTARGS='--accept'
|
2014-08-13 22:53:20 +02:00
|
|
|
test:
|
2017-03-15 17:22:07 +01:00
|
|
|
stack test --flag 'pandoc:embed_data_files' --fast --test-arguments='-j4 --hide-successes $(TESTARGS)'
|
2014-08-13 22:53:20 +02:00
|
|
|
|
|
|
|
bench:
|
2016-12-08 11:46:40 +01:00
|
|
|
stack bench
|
2014-08-13 22:53:20 +02:00
|
|
|
|
2017-03-04 13:12:29 +01:00
|
|
|
reformat:
|
|
|
|
for f in $(sourcefiles); do echo $$f; stylish-haskell -i $$f ; done
|
2017-03-04 12:49:14 +01:00
|
|
|
|
2015-11-15 17:19:26 +01:00
|
|
|
changes_github:
|
2017-01-29 21:55:08 +01:00
|
|
|
pandoc --filter extract-changes.hs changelog -t markdown_github | sed -e 's/\\#/#/g' | pbcopy
|
2015-11-15 17:17:09 +01:00
|
|
|
|
2015-07-03 07:09:04 +02:00
|
|
|
dist: man/pandoc.1
|
2014-08-31 08:15:04 +02:00
|
|
|
cabal sdist
|
2014-08-14 02:52:34 +02:00
|
|
|
rm -rf "pandoc-${version}"
|
|
|
|
tar xvzf dist/pandoc-${version}.tar.gz
|
|
|
|
cd pandoc-${version}
|
2015-11-16 08:15:51 +01:00
|
|
|
stack setup && stack test && cd .. && rm -rf "pandoc-${version}"
|
2014-08-14 02:52:34 +02:00
|
|
|
|
2015-07-03 07:09:04 +02:00
|
|
|
debpkg: man/pandoc.1
|
2017-03-19 15:35:52 +01:00
|
|
|
make -C linux
|
2014-12-16 22:58:34 +01:00
|
|
|
|
2017-01-31 15:05:05 +01:00
|
|
|
macospkg: man/pandoc.1
|
|
|
|
./macos/make_macos_package.sh
|
2014-08-17 22:34:12 +02:00
|
|
|
|
2016-07-14 19:29:46 +02:00
|
|
|
winpkg: pandoc-$(version)-windows.msi
|
|
|
|
|
|
|
|
pandoc-$(version)-windows.msi:
|
2017-02-05 12:15:02 +01:00
|
|
|
wget 'https://ci.appveyor.com/api/projects/jgm/pandoc/artifacts/windows/pandoc.msi?branch=$(BRANCH)' -O pandoc.msi && \
|
2016-07-14 19:29:46 +02:00
|
|
|
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
|
2015-07-03 07:09:04 +02:00
|
|
|
pandoc $< -t man -s --template man/pandoc.1.template \
|
|
|
|
--filter man/capitalizeHeaders.hs \
|
|
|
|
--filter man/removeNotes.hs \
|
|
|
|
--filter man/removeLinks.hs \
|
2015-11-13 04:51:36 +01:00
|
|
|
--variable version="pandoc $(version)" \
|
2015-07-03 07:09:04 +02:00
|
|
|
-o $@
|
|
|
|
|
2015-06-29 23:42:07 +02:00
|
|
|
download_stats:
|
|
|
|
curl https://api.github.com/repos/jgm/pandoc/releases | \
|
2015-07-04 19:29:52 +02:00
|
|
|
jq -r '.[] | .assets | .[] | "\(.download_count)\t\(.name)"'
|
2015-06-29 23:42:07 +02:00
|
|
|
|
2014-08-13 21:31:19 +02:00
|
|
|
clean:
|
2016-12-08 11:46:40 +01:00
|
|
|
stack clean
|
2014-08-13 21:31:19 +02:00
|
|
|
|
2017-03-04 13:40:02 +01:00
|
|
|
.PHONY: deps quick full install clean test bench changes_github macospkg dist prof download_stats reformat
|