~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to fai/python-dateutil-0.4/Makefile

  • Committer: Robert Collins
  • Date: 2005-09-13 15:11:39 UTC
  • mto: (147.2.6) (364.1.3 bzrtools)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: robertc@robertcollins.net-20050913151139-9ac920fc9d7bda31
TODOification

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Simple wrapper for setup.py script
 
3
#
 
4
 
 
5
DESTDIR=/
 
6
PYTHON=python
 
7
 
 
8
prefix=/usr
 
9
bindir=$(prefix)/bin
 
10
 
 
11
all:
 
12
        $(PYTHON) setup.py build
 
13
 
 
14
install:
 
15
        $(PYTHON) setup.py install \
 
16
                --root=$(DESTDIR) \
 
17
                --prefix=$(prefix) \
 
18
                --install-scripts=$(bindir)
 
19
 
 
20
dist:
 
21
        $(PYTHON) setup.py sdist
 
22
 
 
23
rpm:
 
24
        $(PYTHON) setup.py bdist_rpm
 
25