2017-10-30 00:30:09 +01:00
|
|
|
version?=$(shell grep '^[Vv]ersion:' 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)
|
2020-02-07 17:32:47 +01:00
|
|
|
SOURCEFILES?=$(shell git ls-tree -r master --name-only | grep "\.hs$$")
|
2017-02-05 12:15:02 +01:00
|
|
|
BRANCH?=master
|
2021-03-07 01:34:45 +01:00
|
|
|
ARCH=$(shell uname -m)
|
2022-06-10 20:07:41 +02:00
|
|
|
DOCKERIMAGE=registry.gitlab.b-data.ch/ghc/ghc4pandoc:9.2.3
|
2021-02-19 08:22:18 +01:00
|
|
|
COMMIT=$(shell git rev-parse --short HEAD)
|
2021-02-19 19:12:29 +01:00
|
|
|
TIMESTAMP=$(shell date "+%Y%m%d_%H%M")
|
2021-03-06 08:59:50 +01:00
|
|
|
LATESTBENCH=$(word 1,$(shell ls -t bench_*.csv 2>/dev/null))
|
2021-03-17 21:34:17 +01:00
|
|
|
BASELINE?=$(LATESTBENCH)
|
|
|
|
ifeq ($(BASELINE),)
|
|
|
|
BASELINECMD=
|
2021-02-19 19:12:29 +01:00
|
|
|
else
|
2021-03-17 21:34:17 +01:00
|
|
|
BASELINECMD=--baseline $(BASELINE)
|
2021-02-19 19:12:29 +01:00
|
|
|
endif
|
2021-03-18 21:07:54 +01:00
|
|
|
GHCOPTS=-fdiagnostics-color=always -j4 +RTS -A8m -RTS
|
2017-12-29 01:12:32 +01:00
|
|
|
WEBSITE=../../web/pandoc.org
|
2020-07-24 18:57:27 +02:00
|
|
|
REVISION?=1
|
2021-10-31 21:17:57 +01:00
|
|
|
BENCHARGS?=--csv bench_$(TIMESTAMP).csv $(BASELINECMD) --timeout=6 +RTS -T --nonmoving-gc -RTS $(if $(PATTERN),--pattern "$(PATTERN)",)
|
2014-08-13 22:53:20 +02:00
|
|
|
|
2022-03-24 19:38:39 +01:00
|
|
|
quick-cabal: ## build & test with stack, no optimizations
|
2022-03-30 07:42:13 +02:00
|
|
|
cabal v2-test --ghc-options='$(GHCOPTS)' --disable-optimization --test-options="--hide-successes --ansi-tricks=false $(TESTARGS)" && cabal build --ghc-options='$(GHCOPTS)' --disable-optimization exe:pandoc
|
2022-03-24 19:38:39 +01:00
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
# Note: to accept current results of golden tests,
|
|
|
|
# make test TESTARGS='--accept'
|
|
|
|
quick: ## build & test with stack, no optimizations
|
2021-09-17 05:45:40 +02:00
|
|
|
stack install --ghc-options='$(GHCOPTS)' --system-ghc --flag 'pandoc:embed_data_files' --fast --test --test-arguments='-j4 --hide-successes --ansi-tricks=false $(TESTARGS)'
|
2018-10-02 18:23:53 +02:00
|
|
|
|
2022-08-18 22:16:54 +02:00
|
|
|
full: ## build with stack, including benchmarks
|
|
|
|
stack install --flag 'pandoc:embed_data_files' --bench --no-run-benchmarks --test --test-arguments='-j4 --hide-successes--ansi-tricks-false' --ghc-options '-Wall -Werror -fno-warn-unused-do-bind -O0 $(GHCOPTS)'
|
2017-06-24 13:53:47 +02:00
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
ghci: ## start ghci session
|
2019-09-07 06:09:44 +02:00
|
|
|
stack ghci --flag 'pandoc:embed_data_files'
|
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
haddock: ## build haddocks
|
2019-05-22 06:56:50 +02:00
|
|
|
stack haddock
|
2014-08-13 22:53:20 +02:00
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
check: check-cabal checkdocs ## prerelease checks
|
2021-12-18 18:52:24 +01:00
|
|
|
cabal check # check cabal file
|
|
|
|
cabal outdated # check cabal dependencies
|
2022-01-09 22:08:28 +01:00
|
|
|
stack-lint-extra-deps # check that stack.yaml dependencies are up to date
|
|
|
|
! grep 'git:' stack.yaml # use only released versions
|
|
|
|
! grep 'git:' cabal.project # use only released versions
|
2021-12-18 18:52:24 +01:00
|
|
|
|
|
|
|
check-cabal: git-files.txt sdist-files.txt
|
|
|
|
@echo "Checking to see if all committed test/data files are in sdist."
|
|
|
|
diff -u $^
|
|
|
|
|
|
|
|
checkdocs:
|
|
|
|
@echo "Checking for tabs in manual."
|
|
|
|
! grep -q -n -e "\t" MANUAL.txt changelog.md
|
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
ghcid: ## run ghcid/stack
|
2019-08-26 00:38:17 +02:00
|
|
|
ghcid -c "stack repl --flag 'pandoc:embed_data_files'"
|
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
ghcid-test: ## run ghcid/stack with tests
|
2021-03-13 04:12:20 +01:00
|
|
|
ghcid -c "stack repl --ghc-options=-XNoImplicitPrelude --flag 'pandoc:embed_data_files' --ghci-options=-fobject-code pandoc:lib pandoc:test-pandoc"
|
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
bench: ## build and run benchmarks
|
2022-03-31 19:26:06 +02:00
|
|
|
cabal bench --benchmark-options='$(BENCHARGS)' 2>&1 | tee "bench_$(TIMESTAMP).txt"
|
2022-03-24 20:33:53 +01:00
|
|
|
# stack bench \
|
|
|
|
# --ghc-options '$(GHCOPTS)' \
|
|
|
|
# --benchmark-arguments='$(BENCHARGS)' 2>&1 | \
|
|
|
|
# tee "bench_latest.txt"
|
2014-08-13 22:53:20 +02:00
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
reformat: ## reformat with stylish-haskell
|
2017-10-29 21:15:09 +01:00
|
|
|
for f in $(SOURCEFILES); do echo $$f; stylish-haskell -i $$f ; done
|
2017-03-04 12:49:14 +01:00
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
lint: hlint fix_spacing ## run linters
|
2020-02-07 17:32:47 +01:00
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
hlint: ## run hlint
|
2020-02-07 17:32:47 +01:00
|
|
|
for f in $(SOURCEFILES); do echo $$f; hlint --verbose --refactor --refactor-options='-s -o -' $$f; done
|
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
fix_spacing: ## Fix trailing newlines and spaces
|
2020-02-07 17:32:47 +01:00
|
|
|
for f in $(SOURCEFILES); do printf '%s\n' "`cat $$f`" | sed -e 's/ *$$//' > $$f.tmp; mv $$f.tmp $$f; done
|
2017-06-01 15:09:30 +02:00
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
changes_github: ## copy this release's changes in gfm
|
2022-08-04 08:59:39 +02:00
|
|
|
pandoc --lua-filter tools/extract-changes.lua changelog.md -t gfm --wrap=none --template tools/changes_template.html | sed -e 's/\\#/#/g' | pbcopy
|
2015-11-15 17:17:09 +01:00
|
|
|
|
2022-08-15 18:58:58 +02:00
|
|
|
man: man/pandoc.1 man/pandoc-server.1
|
|
|
|
|
|
|
|
.PHONY: man
|
2014-08-14 02:52:34 +02:00
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
debpkg: ## create linux package
|
2021-03-07 01:59:35 +01:00
|
|
|
docker run -v `pwd`:/mnt \
|
2020-07-24 18:57:27 +02:00
|
|
|
-v `pwd`/linux/artifacts:/artifacts \
|
2021-03-07 02:03:36 +01:00
|
|
|
--user $(id -u):$(id -g) \
|
2020-07-24 18:57:27 +02:00
|
|
|
-e REVISION=$(REVISION) \
|
|
|
|
-w /mnt \
|
2021-03-06 08:59:50 +01:00
|
|
|
--memory=0 \
|
2021-03-07 01:34:45 +01:00
|
|
|
--rm \
|
2021-03-06 08:32:03 +01:00
|
|
|
$(DOCKERIMAGE) \
|
2021-03-06 04:11:12 +01:00
|
|
|
bash \
|
2022-08-16 07:47:14 +02:00
|
|
|
/mnt/linux/make_artifacts.sh
|
2014-12-16 22:58:34 +01:00
|
|
|
|
2019-12-23 05:58:02 +01:00
|
|
|
man/pandoc.1: MANUAL.txt man/pandoc.1.before man/pandoc.1.after
|
2020-08-13 08:11:28 +02:00
|
|
|
pandoc $< -f markdown -t man -s \
|
2017-11-12 00:26:24 +01:00
|
|
|
--lua-filter man/manfilter.lua \
|
2019-12-23 05:58:02 +01:00
|
|
|
--include-before-body man/pandoc.1.before \
|
|
|
|
--include-after-body man/pandoc.1.after \
|
|
|
|
--metadata author="" \
|
|
|
|
--variable footer="pandoc $(version)" \
|
2015-07-03 07:09:04 +02:00
|
|
|
-o $@
|
|
|
|
|
2022-08-17 01:27:31 +02:00
|
|
|
man/pandoc-server.1: doc/pandoc-server.md
|
2022-08-15 18:51:17 +02:00
|
|
|
pandoc $< -f markdown -t man -s \
|
|
|
|
--lua-filter man/manfilter.lua \
|
|
|
|
--variable footer="pandoc-server $(version)" \
|
|
|
|
-o $@
|
|
|
|
|
2017-12-30 01:41:51 +01:00
|
|
|
README.md: README.template MANUAL.txt tools/update-readme.lua
|
2020-07-24 02:56:12 +02:00
|
|
|
pandoc --lua-filter tools/update-readme.lua \
|
2017-12-30 19:40:06 +01:00
|
|
|
--reference-location=section -t gfm $< -o $@
|
2017-12-30 01:41:51 +01:00
|
|
|
|
2022-02-05 12:57:19 +01:00
|
|
|
.PHONY: doc/lua-filters.md
|
|
|
|
doc/lua-filters.md: tools/update-lua-module-docs.lua
|
|
|
|
cabal run pandoc -- --standalone \
|
|
|
|
--reference-links \
|
|
|
|
--lua-filter=$< \
|
|
|
|
--columns=66 \
|
|
|
|
--output=$@ \
|
|
|
|
$@
|
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
download_stats: ## print download stats from GitHub releases
|
2015-06-29 23:42:07 +02:00
|
|
|
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
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
pandoc-templates: ## update pandoc-templates repo
|
2017-12-27 18:34:30 +01:00
|
|
|
rm ../pandoc-templates/default.* ; \
|
2020-09-15 19:35:04 +02:00
|
|
|
cp data/templates/* ../pandoc-templates/ ; \
|
2017-12-27 18:34:30 +01:00
|
|
|
pushd ../pandoc-templates/ && \
|
2020-09-15 19:35:04 +02:00
|
|
|
git add * && \
|
2017-12-27 18:34:30 +01:00
|
|
|
git commit -m "Updated templates for pandoc $(version)" && \
|
|
|
|
popd
|
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
update-website: ## update website and upload
|
2017-12-29 01:12:32 +01:00
|
|
|
make -C $(WEBSITE) update
|
|
|
|
make -C $(WEBSITE)
|
|
|
|
make -C $(WEBSITE) upload
|
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
clean: ## clean up
|
2016-12-08 11:46:40 +01:00
|
|
|
stack clean
|
2014-08-13 21:31:19 +02:00
|
|
|
|
2020-12-18 21:04:24 +01:00
|
|
|
sdist-files.txt: .FORCE
|
|
|
|
cabal sdist --list-only | sed 's/\.\///' | grep '^\(test\|data\)\/' | sort > $@
|
2020-12-18 18:18:51 +01:00
|
|
|
|
2020-12-18 21:04:24 +01:00
|
|
|
git-files.txt: .FORCE
|
|
|
|
git ls-tree -r --name-only HEAD | grep '^\(test\|data\)\/' | sort > $@
|
2020-12-18 18:18:51 +01:00
|
|
|
|
2022-01-31 19:07:13 +01:00
|
|
|
.PHONY: help
|
|
|
|
help: ## Display this help
|
|
|
|
@grep -E '^[ a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "%-30s %s\n", $$1, $$2}'
|
|
|
|
|
2022-08-18 22:16:54 +02:00
|
|
|
.PHONY: .FORCE deps quick haddock install clean test bench changes_github download_stats reformat lint weigh pandoc-templates update-website debpkg checkdocs ghcid ghci fix_spacing hlint check check-cabal check
|