Merge lp:~cmars/sharinfoo/makefixes into lp:sharinfoo

Proposed by Casey Marshall
Status: Merged
Merged at revision: 13
Proposed branch: lp:~cmars/sharinfoo/makefixes
Merge into: lp:sharinfoo
Diff against target: 21 lines (+9/-2)
1 file modified
Makefile (+9/-2)
To merge this branch: bzr merge lp:~cmars/sharinfoo/makefixes
Reviewer Review Type Date Requested Status
Domas Monkus (community) Approve
Matthew Williams (community) Approve
Vincenzo Di Somma (community) Approve
Casey Marshall Pending
Review via email: mp+201438@code.launchpad.net

Commit message

Use specific project name when building/installing/cleaning.
Add clean target, configure targets as phony.

Description of the change

Use specific project name when building/installing/cleaning.
Add clean target, configure targets as phony.

To post a comment you must log in.
Revision history for this message
Vincenzo Di Somma (vds) :
review: Approve
Revision history for this message
Matthew Williams (mattyw) :
review: Approve
Revision history for this message
Domas Monkus (tasdomas) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'Makefile'
2--- Makefile 2014-01-10 12:08:44 +0000
3+++ Makefile 2014-01-13 15:43:06 +0000
4@@ -1,8 +1,15 @@
5+PROJECT=launchpad.net/sharinfoo
6+
7 check: install
8 shfood &
9- go test ./...
10+ go test $(PROJECT)/...
11 python ./tests/client_test.py
12 killall shfood
13
14 install:
15- go install ./...
16+ go install $(PROJECT)/...
17+
18+clean:
19+ go clean $(PROJECT)/...
20+
21+.PHONY: check install clean

Subscribers

People subscribed via source and target branches

to all changes: