~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Gary Poster
  • Date: 2009-10-06 18:30:26 UTC
  • mto: This revision was merged to the branch mainline in revision 9721.
  • Revision ID: gary.poster@canonical.com-20091006183026-xke22tcvcbpj0gvt
this is the basic fix.  I should also change _pythonpath.py.in, but I may do that later, because it may be trickier.

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
check: clean build
83
83
        # Run all tests. test_on_merge.py takes care of setting up the
84
84
        # database.
85
 
        ${PY} -t ./test_on_merge.py $(VERBOSITY)
 
85
        ${PYTHON} -t ${PY} ./test_on_merge.py $(VERBOSITY)
86
86
 
87
87
jscheck: build
88
88
        # Run all JavaScript integration tests.  The test runner takes care of
104
104
check_mailman: build
105
105
        # Run all tests, including the Mailman integration
106
106
        # tests. test_on_merge.py takes care of setting up the database.
107
 
        ${PY} -t ./test_on_merge.py $(VERBOSITY) --layer=MailmanLayer
 
107
        ${PYTHON} -t ${PY} ./test_on_merge.py $(VERBOSITY) --layer=MailmanLayer
108
108
 
109
109
lint: ${PY}
110
110
        @bash ./bin/lint.sh
113
113
        @bash ./bin/lint.sh -v
114
114
 
115
115
xxxreport: $(PY)
116
 
        ${PY} -t ./utilities/xxxreport.py -f csv -o xxx-report.csv ./
 
116
        ${PYTHON} -t ${PY} ./utilities/xxxreport.py -f csv -o xxx-report.csv ./
117
117
 
118
118
check-configs: $(PY)
119
119
        ${PY} utilities/check-configs.py
150
150
compile: $(PY)
151
151
        ${SHHH} $(MAKE) -C sourcecode build PYTHON=${PYTHON} \
152
152
            PYTHON_VERSION=${PYTHON_VERSION} LPCONFIG=${LPCONFIG}
153
 
        ${SHHH} LPCONFIG=${LPCONFIG} $(PY) -t buildmailman.py
 
153
        ${SHHH} LPCONFIG=${LPCONFIG} ${PYTHON} -t ${PY} buildmailman.py
154
154
        ${SHHH} $(PY) sourcecode/lazr-js/tools/build.py \
155
155
                -n launchpad -s lib/canonical/launchpad/javascript \
156
156
                -b lib/canonical/launchpad/icing/build $(EXTRA_JS_FILES)