From: Junio C Hamano <junkio@cox.net>
To: Alexandre Julliard <julliard@winehq.org>
Cc: git@vger.kernel.org, Mark Wooding <mdw@distorted.org.uk>
Subject: Re: [PATCH] contrib/emacs/Makefile: Provide tool for byte-compiling files.
Date: Sun, 05 Mar 2006 11:28:53 -0800 [thread overview]
Message-ID: <7v1wxgheru.fsf@assigned-by-dhcp.cox.net> (raw)
In-Reply-To: <20060305161431.23622.20032.stgit@metalzone.distorted.org.uk> (Mark Wooding's message of "Sun, 05 Mar 2006 16:14:31 +0000")
Alexandre, this looks good to me, so I'll be applying it.
-jc
Mark Wooding <mdw@distorted.org.uk> writes:
> From: Mark Wooding <mdw@distorted.org.uk>
>
> Signed-off-by: Mark Wooding <mdw@distorted.org.uk>
> ---
>
> contrib/emacs/.gitignore | 1 +
> contrib/emacs/Makefile | 20 ++++++++++++++++++++
> 2 files changed, 21 insertions(+), 0 deletions(-)
>
> diff --git a/contrib/emacs/.gitignore b/contrib/emacs/.gitignore
> new file mode 100644
> index 0000000..c531d98
> --- /dev/null
> +++ b/contrib/emacs/.gitignore
> @@ -0,0 +1 @@
> +*.elc
> diff --git a/contrib/emacs/Makefile b/contrib/emacs/Makefile
> new file mode 100644
> index 0000000..d3619db
> --- /dev/null
> +++ b/contrib/emacs/Makefile
> @@ -0,0 +1,20 @@
> +## Build and install stuff
> +
> +EMACS = emacs
> +
> +ELC = git.elc vc-git.elc
> +INSTALL = install
> +INSTALL_ELC = $(INSTALL) -m 644
> +prefix = $(HOME)
> +emacsdir = $(prefix)/share/emacs/site-lisp
> +
> +all: $(ELC)
> +
> +install: all
> + $(INSTALL) -d $(emacsdir)
> + $(INSTALL_ELC) $(ELC) $(emacsdir)
> +
> +%.elc: %.el
> + $(EMACS) --batch --eval '(byte-compile-file "$<")'
> +
> +clean:; rm -f $(ELC)
prev parent reply other threads:[~2006-03-05 19:28 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-03-05 16:14 [PATCH] contrib/emacs/Makefile: Provide tool for byte-compiling files Mark Wooding
2006-03-05 19:28 ` Junio C Hamano [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7v1wxgheru.fsf@assigned-by-dhcp.cox.net \
--to=junkio@cox.net \
--cc=git@vger.kernel.org \
--cc=julliard@winehq.org \
--cc=mdw@distorted.org.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).