~romaia/pydojo/trunk

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Ronaldo Maia
  • Date: 2008-10-01 20:30:08 UTC
  • mfrom: (1.1.4 pydojo)
  • Revision ID: romaia@deadsea-20081001203008-r5twx2setfj786ki
mergeĀ fromĀ ~romaia/pydojo/working

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DESTDIR     = 
 
2
prefix      = /usr
 
3
USRBINDIR   = $(DESTDIR)$(prefix)/bin
 
4
 
 
5
INSTALL = install
 
6
 
 
7
all :
 
8
 
 
9
install :
 
10
        $(INSTALL) -m 755 pydojo.py $(USRBINDIR)/pydojo
 
11
 
 
12
clean:
 
13
        rm -f build-stamp
 
14
        rm -f configure-stamp
 
15
        rm -fr debian/pydojo
 
16
 
 
17
 
 
18
package:
 
19
        fakeroot debian/rules clean
 
20
        fakeroot debian/rules build
 
21
        fakeroot debian/rules binary
 
22
 
 
23
deb: package clean
 
24
 
 
25