blob: 3183b5af018aeb4b9c9962652b9dc2015cdf1882 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
version=$(shell grep '^Version:' pandoc.cabal | awk '{print $$2;}')
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=dist/setup/setup
MANPAGES=man/man1/pandoc.1 man/man5/pandoc_markdown.5
CABALARGS=-fmake-pandoc-man-pages -ftrypandoc --enable-tests --enable-benchmarks
all: build test
quick:
cabal configure --enable-tests --disable-optimization
cabal build
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
sdist: man
# note: cabal sdist doesn't work well with preprocessors for some cabal versions
${setup} 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}"
man: ${MANPAGES}
osxpkg:
./make_osx_package.sh
%.1: %.1.template
${makemanpages}
%.5: %.5.template
${makemanpages}
clean:
-rm ${MANPAGES}
.PHONY: all man clean test build bench haddock sdist osxpkg
|