/stdhome

To get this branch, use:
bzr branch http://bzr.ed.am/stdhome

« back to all changes in this revision

Viewing changes to lib/stdhome/Makefile.am

  • Committer: Tim Marston
  • Date: 2014-03-08 00:47:23 UTC
  • Revision ID: tim@ed.am-20140308004723-hkl3s2hobsblf72o
added diff command; moved all command to commands subdir; made stage-revert
handle ongoing deployment automatically (now that initial revno is known); made
verbose level incremental; detect obstructing conflicts in ConflictWalker;
handle files deleted from repo during copy-out (update)

Show diffs side-by-side

added added

removed removed

1
1
# Makefile.am -- process this file with automake to produce Makefile.in
2
2
 
3
 
pkgpython_PYTHON = \
 
3
nobase_pkgpython_PYTHON = \
4
4
        __init__.py \
5
5
        the.py \
6
6
        program.py \
7
7
        repo.py \
 
8
        util.py \
8
9
        deployment.py \
9
 
        command_init.py \
10
 
        command_update.py
 
10
        walker/__init__.py \
 
11
        walker/walker.py \
 
12
        walker/status.py \
 
13
        walker/copy_out.py \
 
14
        walker/conflict.py \
 
15
        walker/copy_in.py \
 
16
        vcs/__init__.py \
 
17
        vcs/vcs.py \
 
18
        vcs/bzr.py \
 
19
        command/__init__.py \
 
20
        command/command.py \
 
21
        command/init.py \
 
22
        command/update.py \
 
23
        command/stage_revert.py \
 
24
        command/status.py \
 
25
        command/resolve.py \
 
26
        command/diff.py