~ubuntuone-hackers/conn-check/trunk

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: James Westby
  • Date: 2014-07-24 19:30:30 UTC
  • mfrom: (13 conn-check)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: james.westby@canonical.com-20140724193030-7dmxpb0rlb7bhztk
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
        virtualenv $(ENV)
5
5
 
6
6
build: $(ENV)
7
 
        $(ENV)/bin/pip install -r requirements.txt
 
7
        $(ENV)/bin/pip install -r requirements.txt -r devel-requirements.txt
8
8
        $(ENV)/bin/python setup.py develop
9
9
 
10
10
test:
11
11
        $(ENV)/bin/nosetests
12
12
 
 
13
clean:
 
14
        -rm -r $(ENV)
 
15
        find . -name "*.pyc" -delete
 
16
 
 
17
install-debs:
 
18
        sudo xargs --arg-file deb-requirements.txt apt-get install -y
 
19
 
13
20
 
14
21
.PHONY: test build
15
22
.DEFAULT_GOAL := test