Changeset 365:e83edf07e604

Show
Ignore:
Timestamp:
08/24/08 04:21:15 (3 months ago)
Author:
Christos Trochalakis <yatiohi@…>
Branch:
default
Message:

minor: housekeeping in makefile

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Makefile

    r326 r365  
    11# $Id: $ 
    22 
    3 .PHONY: docs 
    43docs: 
    54        epydoc -n transifex -o docs/epydoc -u http://transifex.org \ 
    65        `find transifex -name '*.py'` 
    7  
    8 .PHONY: test 
    96test: 
    107        nosetests 
    118 
    12 .PHONY: todo 
    139todo: 
    1410        grep -r TODO transifex/ || : 
    1511        grep -r FIXME transifex/ || : 
    1612 
    17 .PHONY: clean 
    1813clean: 
    1914        find . -name '*.pyc' | xargs -I'{}' rm '{}' 
    2015 
    21 .PHONY: dist 
    2216dist: 
    2317        python setup.py sdist --formats=bztar 
    2418 
    25 .PHONY: build 
    2619build: 
    2720        python setup.py build 
    2821 
    29 .PHONY: install 
    3022install: 
    3123        python setup.py install -O1 --skip-build --root $(DESTDIR) 
    3224        install -D tools/transifex-client.py $(DESTDIR)/usr/bin/transifex 
     25 
     26.PHONY: docs test todo clean dist build install