From: ueno Date: Thu, 28 Mar 2002 18:23:00 +0000 (+0000) Subject: Use ?= to set variables which may be imported from upper-level X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=bc7e5959c354bc951160b6804206635a246f9262;p=elisp%2Fliece.git Use ?= to set variables which may be imported from upper-level Makefiles. --- diff --git a/lisp/Makefile.lisp b/lisp/Makefile.lisp index 192f563..cffea34 100644 --- a/lisp/Makefile.lisp +++ b/lisp/Makefile.lisp @@ -1,19 +1,18 @@ PACKAGE = liece -VERSION = 2.0 +VERSION = 2.0.0 -EMACS = emacs -XEMACS = xemacs -FLAGS = -batch -q -no-site-file -TAR = tar +EMACS ?= emacs +XEMACS ?= xemacs +FLAGS ?= -batch -q -no-site-file +TAR ?= tar +PREFIX ?= NONE +LISPDIR ?= NONE +PACKAGEDIR ?= NONE +VERSION_SPECIFIC_LISPDIR ?= NONE -PREFIX = NONE -LISPDIR = NONE -PACKAGEDIR = NONE -VERSION_SPECIFIC_LISPDIR = NONE +GOMI = liece-setup.el *.elc -GOMI = liece-setup.el *.elc - -all: elc +all:: elc elc: $(EMACS) $(FLAGS) -l ./liece-make.el -f autoload-liece \ @@ -35,5 +34,5 @@ install-package: package $(XEMACS) $(FLAGS) -l ./liece-make.el -f install-liece-package \ $(PACKAGEDIR) -clean: +clean:: -rm -f $(GOMI)