2017-10-29 16:30:09 -07:00
|
|
|
version?=$(shell grep '^[Vv]ersion:' pandoc.cabal | awk '{print $$2;}')
|
2015-07-01 11:21:34 -07:00
|
|
|
pandoc=$(shell find dist -name pandoc -type f -exec ls -t {} \; | head -1)
|
2017-10-29 13:15:09 -07:00
|
|
|
SOURCEFILES?=$(shell find pandoc.hs src test -name '*.hs')
|
2017-02-05 12:15:02 +01:00
|
|
|
BRANCH?=master
|
2019-01-30 14:38:29 -08:00
|
|
|
RESOLVER?=lts-13
|
2019-03-27 09:36:52 -07:00
|
|
|
GHCOPTS=-fdiagnostics-color=always
|
2018-08-10 16:16:00 -07:00
|
|
|
# Later:
|
|
|
|
# -Wpartial-fields (currently used in Powerpoint writer)
|
|
|
|
# -Wmissing-export-lists (currently some Odt modules violate this)
|
|
|
|
# -Wredundant-constraints (problematic if we want to support older base)
|
2017-12-28 16:12:32 -08:00
|
|
|
WEBSITE=../../web/pandoc.org
|
2014-08-13 13:53:20 -07:00
|
|
|
|
2018-10-02 09:23:53 -07:00
|
|
|
quick:
|
2019-03-09 14:30:07 -08:00
|
|
|
stack install --ghc-options='$(GHCOPTS)' --install-ghc --flag 'pandoc:embed_data_files' --fast --test --test-arguments='-j4 --hide-successes $(TESTARGS)'
|
2018-10-02 09:23:53 -07:00
|
|
|
|
2018-10-01 23:58:13 -07:00
|
|
|
quick-cabal:
|
2019-03-27 09:36:52 -07:00
|
|
|
cabal new-configure . --ghc-options '$(GHCOPTS)' --disable-optimization --enable-tests
|
2018-10-13 23:09:51 -07:00
|
|
|
cabal new-build . --disable-optimization
|
|
|
|
cabal new-run test-pandoc --disable-optimization -- --hide-successes $(TESTARGS)
|
|
|
|
|
|
|
|
full-cabal:
|
|
|
|
cabal new-configure . --ghc-options '$(GHCOPTS)' --flags '+embed_data_files +weigh-pandoc +trypandoc' --enable-tests --enable-benchmarks
|
|
|
|
cabal new-build . --disable-optimization
|
|
|
|
cabal new-run test-pandoc --disable-optimization -- --hide-successes $(TESTARGS)
|
2018-10-01 23:58:13 -07:00
|
|
|
|
2014-08-18 17:40:35 -07:00
|
|
|
full:
|
2019-05-21 21:56:50 -07:00
|
|
|
stack install --flag 'pandoc:embed_data_files' --flag 'pandoc:weigh-pandoc' --flag 'pandoc:trypandoc' --bench --no-run-benchmarks --test --test-arguments='-j4 --hide-successes' --ghc-options '-Wall -Werror -fno-warn-unused-do-bind -O0 -j4 $(GHCOPTS)'
|
2017-06-24 13:53:47 +02:00
|
|
|
|
|
|
|
haddock:
|
2019-05-21 21:56:50 -07:00
|
|
|
stack haddock
|
2014-08-13 13:53:20 -07:00
|
|
|
|
2017-03-15 17:22:07 +01:00
|
|
|
# Note: to accept current results of golden tests,
|
|
|
|
# make test TESTARGS='--accept'
|
2014-08-13 13:53:20 -07:00
|
|
|
test:
|
2019-05-21 21:56:50 -07:00
|
|
|
stack test --flag 'pandoc:embed_data_files' --fast --test-arguments='-j4 --hide-successes $(TESTARGS)' --ghc-options '$(GHCOPTS)'
|
2014-08-13 13:53:20 -07:00
|
|
|
|
|
|
|
bench:
|
2019-05-21 21:56:50 -07:00
|
|
|
stack bench --benchmark-arguments='$(BENCHARGS)' --ghc-options '$(GHCOPTS)'
|
2014-08-13 13:53:20 -07:00
|
|
|
|
2017-06-10 21:10:52 +02:00
|
|
|
weigh:
|
2019-05-21 21:56:50 -07:00
|
|
|
stack build --ghc-options '$(GHCOPTS)' --flag 'pandoc:weigh-pandoc' && stack exec weigh-pandoc
|
2017-06-10 21:10:52 +02:00
|
|
|
|
2017-03-04 13:12:29 +01:00
|
|
|
reformat:
|
2017-10-29 13:15:09 -07:00
|
|
|
for f in $(SOURCEFILES); do echo $$f; stylish-haskell -i $$f ; done
|
2017-03-04 12:49:14 +01:00
|
|
|
|
2017-06-01 15:09:30 +02:00
|
|
|
lint:
|
2017-10-29 13:15:09 -07:00
|
|
|
for f in $(SOURCEFILES); do echo $$f; hlint --verbose --refactor --refactor-options='-i -s' $$f; done
|
2017-06-01 15:09:30 +02:00
|
|
|
|
2015-11-15 08:19:26 -08:00
|
|
|
changes_github:
|
2017-12-28 16:39:30 -08:00
|
|
|
pandoc --filter tools/extract-changes.hs changelog -t gfm --wrap=none | sed -e 's/\\#/#/g' | pbcopy
|
2015-11-15 08:17:09 -08:00
|
|
|
|
2015-07-02 22:09:04 -07:00
|
|
|
dist: man/pandoc.1
|
2014-08-30 23:15:04 -07:00
|
|
|
cabal sdist
|
2014-08-13 17:52:34 -07:00
|
|
|
rm -rf "pandoc-${version}"
|
|
|
|
tar xvzf dist/pandoc-${version}.tar.gz
|
|
|
|
cd pandoc-${version}
|
2015-11-15 23:15:51 -08:00
|
|
|
stack setup && stack test && cd .. && rm -rf "pandoc-${version}"
|
2014-08-13 17:52:34 -07:00
|
|
|
|
2018-01-18 08:43:56 -08:00
|
|
|
packages: checkdocs winpkg debpkg macospkg
|
2018-01-18 08:42:43 -08:00
|
|
|
|
|
|
|
checkdocs: README.md
|
|
|
|
! grep -n -e "\t" MANUAL.txt changelog
|
2017-11-20 21:40:00 -08:00
|
|
|
|
2015-07-02 22:09:04 -07:00
|
|
|
debpkg: man/pandoc.1
|
2017-11-20 21:40:00 -08:00
|
|
|
make -C linux && \
|
|
|
|
cp linux/artifacts/pandoc-$(version)-*.* .
|
2014-12-16 13:58:34 -08:00
|
|
|
|
2017-01-31 15:05:05 +01:00
|
|
|
macospkg: man/pandoc.1
|
|
|
|
./macos/make_macos_package.sh
|
2014-08-17 13:34:12 -07:00
|
|
|
|
2018-04-15 17:09:50 -07:00
|
|
|
winpkg: pandoc-$(version)-windows-i386.msi pandoc-$(version)-windows-i386.zip pandoc-$(version)-windows-x86_64.msi pandoc-$(version)-windows-x86_64.zip
|
2017-11-20 21:34:22 -08:00
|
|
|
|
2018-04-15 17:09:50 -07:00
|
|
|
pandoc-$(version)-windows-%.zip: pandoc-$(version)-windows-%.msi
|
2018-09-16 16:15:08 -07:00
|
|
|
ORIGDIR=`pwd` && \
|
|
|
|
CONTAINER=$(basename $<) && \
|
|
|
|
TEMPDIR=`mktemp -d` && \
|
|
|
|
msiextract -C $$TEMPDIR/msi $< && \
|
|
|
|
pushd $$TEMPDIR && \
|
|
|
|
mkdir $$CONTAINER && \
|
|
|
|
find msi -type f -exec cp {} $$CONTAINER/ \; && \
|
|
|
|
zip -r $$ORIGDIR/$@ $$CONTAINER && \
|
|
|
|
popd & \
|
|
|
|
rm -rf $$TEMPDIR
|
2016-07-14 10:29:46 -07:00
|
|
|
|
2018-04-15 17:09:50 -07:00
|
|
|
pandoc-$(version)-windows-%.msi: pandoc-windows-%.msi
|
2019-05-17 23:05:49 -07:00
|
|
|
osslsigncode sign -pkcs12 ~/Private/SectigoCodeSigning.exp2023.p12 -in $< -i http://johnmacfarlane.net/ -t http://timestamp.comodoca.com/ -out $@ -askpass
|
2018-04-15 17:09:50 -07:00
|
|
|
rm $<
|
|
|
|
|
2018-07-19 22:43:19 -07:00
|
|
|
.INTERMEDIATE: pandoc-windows-i386.msi pandoc-windows-x86_64.msi
|
|
|
|
|
2018-04-15 17:09:50 -07:00
|
|
|
pandoc-windows-i386.msi:
|
2018-10-07 11:16:32 -07:00
|
|
|
JOBID=$(shell curl https://ci.appveyor.com/api/projects/jgm/pandoc | jq '.build.jobs[]| select(.name|test("i386")) | .jobId') && \
|
2018-04-15 17:09:50 -07:00
|
|
|
wget "https://ci.appveyor.com/api/buildjobs/$$JOBID/artifacts/windows%2F$@" -O $@
|
|
|
|
|
|
|
|
pandoc-windows-x86_64.msi:
|
2018-10-07 11:16:32 -07:00
|
|
|
JOBID=$(shell curl https://ci.appveyor.com/api/projects/jgm/pandoc | jq '.build.jobs[]| select(.name|test("x86_64")) | .jobId') && \
|
2018-04-15 17:09:50 -07:00
|
|
|
wget "https://ci.appveyor.com/api/buildjobs/$$JOBID/artifacts/windows%2F$@" -O $@
|
2016-07-14 10:29:46 -07:00
|
|
|
|
2016-07-20 14:12:57 +02:00
|
|
|
man/pandoc.1: MANUAL.txt man/pandoc.1.template
|
2017-11-11 15:26:24 -08:00
|
|
|
pandoc $< -f markdown-smart -t man -s --template man/pandoc.1.template \
|
|
|
|
--lua-filter man/manfilter.lua \
|
2015-11-12 19:51:36 -08:00
|
|
|
--variable version="pandoc $(version)" \
|
2015-07-02 22:09:04 -07:00
|
|
|
-o $@
|
|
|
|
|
2017-09-30 16:45:31 +02:00
|
|
|
doc/lua-filters.md: tools/ldoc.ltp data/pandoc.lua tools/update-lua-docs.lua
|
|
|
|
cp $@ $@.tmp
|
|
|
|
pandoc -t markdown --columns=64 --atx-headers \
|
|
|
|
-f markdown -t markdown --standalone\
|
|
|
|
--lua-filter tools/update-lua-docs.lua \
|
|
|
|
-o $@ $@.tmp
|
|
|
|
rm $@.tmp
|
|
|
|
|
2017-12-29 16:41:51 -08:00
|
|
|
README.md: README.template MANUAL.txt tools/update-readme.lua
|
|
|
|
pandoc --lua-filter tools/update-readme.lua --reference-links \
|
2017-12-30 10:40:06 -08:00
|
|
|
--reference-location=section -t gfm $< -o $@
|
2017-12-29 16:41:51 -08:00
|
|
|
|
2015-06-29 14:42:07 -07:00
|
|
|
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)"'
|
2015-06-29 14:42:07 -07:00
|
|
|
|
2017-12-27 09:34:30 -08:00
|
|
|
pandoc-templates:
|
|
|
|
rm ../pandoc-templates/default.* ; \
|
|
|
|
cp data/templates/default.* ../pandoc-templates/ ; \
|
|
|
|
pushd ../pandoc-templates/ && \
|
|
|
|
git add default.* && \
|
|
|
|
git commit -m "Updated templates for pandoc $(version)" && \
|
|
|
|
popd
|
|
|
|
|
2017-12-27 14:09:48 -08:00
|
|
|
trypandoc:
|
2018-09-16 22:31:35 -07:00
|
|
|
ssh -t macfarlane 'cd src/pandoc && git pull && stack install --flag pandoc:trypandoc --flag pandoc:embed_data_files && cd trypandoc && sudo make install'
|
2017-12-27 14:09:48 -08:00
|
|
|
|
2017-12-28 16:12:32 -08:00
|
|
|
update-website:
|
|
|
|
make -C $(WEBSITE) update
|
|
|
|
make -C $(WEBSITE)
|
|
|
|
make -C $(WEBSITE) upload
|
|
|
|
|
2014-08-13 12:31:19 -07:00
|
|
|
clean:
|
2016-12-08 11:46:40 +01:00
|
|
|
stack clean
|
2014-08-13 12:31:19 -07:00
|
|
|
|
2018-01-18 08:42:43 -08:00
|
|
|
.PHONY: deps quick full haddock install clean test bench changes_github macospkg dist prof download_stats reformat lint weigh doc/lua-filters.md packages pandoc-templates trypandoc update-website debpkg macospkg winpkg checkdocs
|