~ubuntu-branches/ubuntu/precise/ghc/precise

« back to all changes in this revision

Viewing changes to libraries/Cabal/doc/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Joachim Breitner
  • Date: 2011-01-17 12:49:24 UTC
  • Revision ID: james.westby@ubuntu.com-20110117124924-do1pym1jlf5o636m
Tags: upstream-7.0.1
ImportĀ upstreamĀ versionĀ 7.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
TOP = ../../..
 
2
 
 
3
ifeq "$(findstring boilerplate.mk, $(wildcard $(TOP)/mk/*))" ""
 
4
# ----------------------------------------------------------------------------
 
5
# Standalone Makefile:
 
6
 
 
7
.PHONY: all
 
8
 
 
9
all: Cabal.pdf
 
10
 
 
11
Cabal.pdf: Cabal.xml
 
12
        docbook2pdf Cabal.xml
 
13
 
 
14
clean:
 
15
        rm -fr *~ API users-guide Cabal.pdf Cabal.dvi semantic.cache
 
16
 
 
17
else # boilerplate.mk exists
 
18
# ----------------------------------------------------------------------------
 
19
# GHC build tree Makefile:
 
20
 
 
21
include $(TOP)/mk/boilerplate.mk
 
22
 
 
23
DOC_SUBDIR=libraries/Cabal/doc
 
24
XML_DOC = Cabal
 
25
INSTALL_XML_DOC = $(XML_DOC)
 
26
 
 
27
binary-dist:
 
28
        @:
 
29
 
 
30
include $(TOP)/mk/target.mk
 
31
 
 
32
endif