/stdhome

To get this branch, use:
bzr branch http://bzr.ed.am/stdhome
1 by Tim Marston
initial commit; basic app startup and initial command-line processing
1
# Makefile.am -- process this file with automake to produce Makefile.in
2
8 by Tim Marston
added diff command; moved all command to commands subdir; made stage-revert
3
nobase_pkgpython_PYTHON = \
41 by Tim Marston
added add command
4
	command/add.py \
31 by Tim Marston
updated Makefile.am
5
	command/command.py \
6
	command/diff.py \
7
	command/__init__.py \
8
	command/init.py \
9
	command/resolve.py \
10
	command/revert.py \
11
	command/stage_revert.py \
12
	command/status.py \
13
	command/update.py \
41 by Tim Marston
added add command
14
	config.py \
31 by Tim Marston
updated Makefile.am
15
	deployment.py \
16
	file_matcher.py \
1 by Tim Marston
initial commit; basic app startup and initial command-line processing
17
	__init__.py \
2 by Tim Marston
added global objects (the.repo, the.program), deployment object and implemented
18
	program.py \
19
	repo.py \
31 by Tim Marston
updated Makefile.am
20
	the.py \
8 by Tim Marston
added diff command; moved all command to commands subdir; made stage-revert
21
	util.py \
22
	vcs/__init__.py \
23
	vcs/vcs.py \
24
	vcs/bzr.py \
31 by Tim Marston
updated Makefile.am
25
	walker/conflict.py \
26
	walker/copy_base.py \
27
	walker/copy_in.py \
28
	walker/copy_out.py \
29
	walker/__init__.py \
30
	walker/status.py \
31
	walker/walker.py