[clfswm-cvs] [clfswm-git]CLFSWM - A(nother) Common Lisp FullScreen Window Manager branch master updated. R-1106-160-g6bc8e99

Philippe Brochard pbrochard at common-lisp.net
Wed Nov 28 23:31:06 UTC 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CLFSWM - A(nother) Common Lisp FullScreen Window Manager".

The branch, master has been updated
       via  6bc8e9975aa46b1a4b7e4f6c574db51dfeecc484 (commit)
      from  49b287c2d3af757b3794fe45fb5b64dd9fa2c71d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 6bc8e9975aa46b1a4b7e4f6c574db51dfeecc484
Author: Philippe Brochard <pbrochard at common-lisp.net>
Date:   Thu Nov 29 00:31:01 2012 +0100

    Use load.lisp instead of load.tmp.lisp

diff --git a/Makefile b/Makefile
index a7f333e..6abff76 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ SBCL=$(shell which sbcl)
 CMUCL=$(shell which cmucl || which lisp)
 CCL=$(shell which ccl)
 ECL=$(shell which ecl)
-LOADTMP=load.tmp.lisp
+LOAD=load.lisp
 
 SRC=$(wildcard *.lisp src/*.lisp)
 
@@ -13,11 +13,11 @@ all: clfswm
 
 clfswm: $(SRC)
 	@echo "Please, tweak the file load.lisp to fit your needs."
-	@if test -f "$(CLISP)"; then echo "Building with CLISP"; $(CLISP) -E iso-8859-1 $(LOADTMP); \
-	elif test -f "$(SBCL)"; then echo "Building with SBCL"; $(SBCL) --load $(LOADTMP); \
-	elif test -f "$(CMUCL)"; then echo "Building with CMUCL"; $(CMUCL) -load $(LOADTMP); \
-	elif test -f "$(CCL)"; then echo "Building with CCL"; $(CCL) --load $(LOADTMP); \
-	elif test -f "$(ECL)"; then echo "Building with ECL"; $(ECL) -load $(LOADTMP); \
+	@if test -f "$(CLISP)"; then echo "Building with CLISP"; $(CLISP) -E iso-8859-1 $(LOAD); \
+	elif test -f "$(SBCL)"; then echo "Building with SBCL"; $(SBCL) --load $(LOAD); \
+	elif test -f "$(CMUCL)"; then echo "Building with CMUCL"; $(CMUCL) -load $(LOAD); \
+	elif test -f "$(CCL)"; then echo "Building with CCL"; $(CCL) --load $(LOAD); \
+	elif test -f "$(ECL)"; then echo "Building with ECL"; $(ECL) -load $(LOAD); \
 	else echo "No Lisp found. Please, install one of CLISP, SBCL, CMUCL, CCL or ECL"; \
 	fi
 

-----------------------------------------------------------------------

Summary of changes:
 Makefile |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
CLFSWM - A(nother) Common Lisp FullScreen Window Manager




More information about the clfswm-cvs mailing list