From 040ef0d5e0c1244e00052da3e8851f99215b95c0 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 10 Nov 2013 21:34:42 +0100 Subject: 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. --- gitto/Makefile | 4 ++-- 1 file 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)) -- cgit v1.2.3-54-g00ecf