~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Leonard Richardson
  • Date: 2008-09-04 15:06:25 UTC
  • mto: This revision was merged to the branch mainline in revision 6956.
  • Revision ID: leonard.richardson@canonical.com-20080904150625-v5bjia75qwx17bn6
Fixed the makefile to run apidoc when building.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
newsampledata:
40
40
        $(MAKE) -C database/schema newsampledata
41
41
 
42
 
apidoc: build
 
42
apidoc: compile
43
43
        LPCONFIG=$(LPCONFIG) $(PYTHON) ./utilities/create-lp-wadl.py | \
44
44
                $(XSLTPROC) ./lib/launchpadlib/wadl-to-refhtml.xsl - \
45
45
                > ./lib/canonical/launchpad/apidoc/index.html
111
111
pagetests: build
112
112
        env PYTHONPATH=$(PYTHONPATH) ${PYTHON} test.py test_pages
113
113
 
114
 
inplace: build apidoc
115
 
 
116
 
build: bzr_version_info
 
114
inplace: build
 
115
 
 
116
build: bzr_version_info compile apidoc
 
117
 
 
118
compile:
117
119
        ${SHHH} $(MAKE) -C sourcecode build PYTHON=${PYTHON} \
118
120
            PYTHON_VERSION=${PYTHON_VERSION} LPCONFIG=${LPCONFIG}
119
121
        ${SHHH} LPCONFIG=${LPCONFIG} PYTHONPATH=$(PYTHONPATH) \