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.
This commit is contained in:
parent
442b8f9122
commit
040ef0d5e0
1 changed files with 2 additions and 2 deletions
|
@ -3,8 +3,8 @@ SITEDIR = $(shell pkg-config guile-2.0 --variable=sitedir \
|
||||||
--define-variable=prefix=$(DESTDIR))
|
--define-variable=prefix=$(DESTDIR))
|
||||||
COMPDIR = $(DESTDIR)/lib/guile/2.0/site-ccache
|
COMPDIR = $(DESTDIR)/lib/guile/2.0/site-ccache
|
||||||
|
|
||||||
objects = config.scm config.go git.scm git.go ui.scm ui.go main.scm \
|
objects = config.scm config.go git.scm git.go ui.scm ui.go path.scm \
|
||||||
main.go path.scm path.go
|
path.go main.scm main.go
|
||||||
install-objects = $(addprefix install-,$(objects))
|
install-objects = $(addprefix install-,$(objects))
|
||||||
uninstall-objects = $(addprefix uninstall-,$(objects))
|
uninstall-objects = $(addprefix uninstall-,$(objects))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue