aboutsummaryrefslogtreecommitdiff
path: root/ghc.mk
blob: 92b16f0af2f361d1efc0e758d0fce17239e57cc8 (plain) (blame)
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
utils/haddock_USES_CABAL = YES
utils/haddock_PACKAGE = haddock
utils/haddock_CONFIGURE_OPTS = --flag in-ghc-tree
# XXX This is a temporary hack:
utils/haddock_HC_OPTS += -Wwarn

ifeq "$(Windows)" "YES"
utils/haddock_dist_PROG = haddock
else
utils/haddock_dist_PROG = haddock-real

$(INPLACE_BIN)/haddock: $(INPLACE_BIN)/haddock-real
	$(RM) -f $@
	echo '#!$(SHELL)' >> $@
	echo 'executablename=$(FPTOOLS_TOP_ABS)/$<' >> $@
	echo 'datadir=$(FPTOOLS_TOP_ABS)/inplace/lib' >> $@
	cat utils/haddock/haddock.wrapper >> $@
	$(EXECUTABLE_FILE) $@
endif

$(INPLACE_BIN)/$(utils/haddock_dist_PROG): inplace/lib/html

inplace/lib/html:
	$(RM) -rf $@
	cp -a utils/haddock/html $@

$(eval $(call build-prog,utils/haddock,dist,2))

utils/haddock_dist_MODULES += Paths_haddock