From 35683db0e663e94f564be73d7f9daa78837ecd54 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Thu, 4 Oct 2012 10:52:11 +0200 Subject: [PATCH] Compile view.scm first This is to avoid automatic compilation to the cache when main.scm is being built. --- undone/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/undone/Makefile b/undone/Makefile index c2724f2..167b9cd 100644 --- a/undone/Makefile +++ b/undone/Makefile @@ -3,7 +3,7 @@ SITEDIR = $(shell pkg-config guile-2.0 --variable=sitedir \ --define-variable=prefix=$(DESTDIR)) COMPDIR = $(DESTDIR)/lib/guile/2.0/site-ccache -objects = main.scm main.go view.scm view.go +objects = view.scm view.go main.scm main.go install-objects = $(addprefix install-,$(objects)) uninstall-objects = $(addprefix uninstall-,$(objects))