aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-11-10 21:34:42 +0100
committerGravatar Tom Willemse2013-11-10 21:34:42 +0100
commit040ef0d5e0c1244e00052da3e8851f99215b95c0 (patch)
tree9c4c8ecf8e633d37a155c50f9c551b93c268783c
parent442b8f9122534e2336cfe480f6b1ced5b79cab45 (diff)
downloadgitto-040ef0d5e0c1244e00052da3e8851f99215b95c0.tar.gz
gitto-040ef0d5e0c1244e00052da3e8851f99215b95c0.zip
Makefile: Put path and main in order of dependence
The `main' module depends on `path', not the other way around, just to be sure to keep away compilation warnings or double compilation compile `path' first.
-rw-r--r--gitto/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/gitto/Makefile b/gitto/Makefile
index 8832fde..31e80fc 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 main.scm \
- main.go path.scm path.go
+objects = 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))