2014-08-14 02:52:34 +02:00
|
|
|
version=$(shell grep '^Version:' pandoc.cabal | awk '{print $$2;}')
|
2014-08-13 22:53:20 +02:00
|
|
|
makemanpages=$(shell find dist -type f -name make-pandoc-man-pages)
|
|
|
|
ifeq "${makemanpages}" ""
|
|
|
|
makemanpages=@echo "You need to 'cabal configure -fmake-pandoc-man-pages && cabal build'" && exit 1
|
|
|
|
endif
|
|
|
|
setup=$(shell find dist -type f -name setup)
|
2014-08-13 21:31:19 +02:00
|
|
|
MANPAGES=man/man1/pandoc.1 man/man5/pandoc_markdown.5
|
2014-08-13 22:53:20 +02:00
|
|
|
CABALARGS=-fmake-pandoc-man-pages --enable-tests --enable-benchmarks
|
2014-08-13 21:31:19 +02:00
|
|
|
|
2014-08-13 22:53:20 +02:00
|
|
|
all: build test
|
|
|
|
|
|
|
|
deps:
|
|
|
|
cabal install ${OPTIONS} ${CABALARGS} --only-dependencies
|
|
|
|
|
|
|
|
build:
|
|
|
|
cabal configure ${OPTIONS} ${CABALARGS}
|
|
|
|
cabal build
|
|
|
|
|
|
|
|
test:
|
|
|
|
cabal test
|
|
|
|
|
|
|
|
bench:
|
|
|
|
cabal bench
|
|
|
|
|
|
|
|
install:
|
|
|
|
cabal install
|
|
|
|
|
|
|
|
haddock:
|
|
|
|
cabal haddock
|
|
|
|
|
2014-08-14 02:52:34 +02:00
|
|
|
sdist: man haddock
|
2014-08-13 22:53:20 +02:00
|
|
|
# note: cabal sdist doesn't work well with preprocessors for some cabal versions
|
|
|
|
${setup} sdist
|
|
|
|
|
2014-08-14 02:52:34 +02:00
|
|
|
# sanity check on sdist
|
|
|
|
dist: sdist
|
|
|
|
rm -rf "pandoc-${version}"
|
|
|
|
tar xvzf dist/pandoc-${version}.tar.gz
|
|
|
|
cd pandoc-${version}
|
|
|
|
cabal configure ${CABALARGS} && cabal build && cabal test && cd .. && rm -rf "pandoc-${version}"
|
|
|
|
|
2014-08-13 22:53:20 +02:00
|
|
|
man: ${MANPAGES}
|
2014-08-13 21:31:19 +02:00
|
|
|
|
|
|
|
%.1: %.1.template
|
|
|
|
${makemanpages}
|
|
|
|
|
|
|
|
%.5: %.5.template
|
|
|
|
${makemanpages}
|
|
|
|
|
|
|
|
clean:
|
|
|
|
-rm ${MANPAGES}
|
|
|
|
|
2014-08-13 22:53:20 +02:00
|
|
|
.PHONY: all man clean test build bench haddock sdist
|