aboutsummaryrefslogtreecommitdiffstats
path: root/gitto/Makefile
diff options
context:
space:
mode:
authorGravatar Tom Willemse2014-03-01 14:08:23 +0100
committerGravatar Tom Willemse2014-03-01 14:08:23 +0100
commit78b63229f6e84590c33c8479ad429302f1613818 (patch)
tree05bec22ca33c0df7785f1657c731b8736dc02a4f /gitto/Makefile
parent73961321ffc197ce69dc22e60200862578250603 (diff)
downloadgitto-78b63229f6e84590c33c8479ad429302f1613818.tar.gz
gitto-78b63229f6e84590c33c8479ad429302f1613818.zip
Separate command operations into module
Separate and encapsulate operations on commands in their own module. This gives a more clearly defined API to the commands and will allow other modules to specify commands as well.
Diffstat (limited to 'gitto/Makefile')
-rw-r--r--gitto/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/gitto/Makefile b/gitto/Makefile
index 31e80fc..eb54268 100644
--- a/gitto/Makefile
+++ b/gitto/Makefile
@@ -3,8 +3,8 @@ SITEDIR = $(shell pkg-config guile-2.0 --variable=sitedir \
--define-variable=prefix=$(DESTDIR))
COMPDIR = $(DESTDIR)/lib/guile/2.0/site-ccache
-objects = config.scm config.go git.scm git.go ui.scm ui.go path.scm \
- path.go main.scm main.go
+objects = command.scm command.go config.scm config.go git.scm git.go \
+ ui.scm ui.go path.scm path.go main.scm main.go
install-objects = $(addprefix install-,$(objects))
uninstall-objects = $(addprefix uninstall-,$(objects))