~dobey/changeup/trunk

« back to all changes in this revision

Viewing changes to changeup/Makefile.am

  • Committer: Rodney Dawes
  • Date: 2010-02-08 22:37:29 UTC
  • Revision ID: rodney.dawes@canonical.com-20100208223729-r4bqi0x4j8yxb77q
Move client.py code into changeup/__init__.py
Add a .bzrignore
Add the COPYING
Add a build system
Update the dispatcher and test code to not use changeup.client

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package = changeup
 
2
modules = __init__.py
 
3
 
 
4
install-data-local:
 
5
        $(mkdir_p) $(DESTDIR)$(pythondir)/$(package); \
 
6
        for module in $(pyfiles); do \
 
7
                $(install_sh_DATA) $$module $(DESTDIR)$(pythondir)/$(package); \
 
8
        done
 
9
 
 
10
uninstall-local:
 
11
        for module in $(modules); do \
 
12
                rm -f $(DESTDIR)$(pythondir)/$(package)/$$module; \
 
13
        done
 
14
        -rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(pythondir)/$(package)
 
15
 
 
16
CLEANFILES = *.pyc
 
17
 
 
18
MAINTAINERCLEANFILES = Makefile.in