[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Automake 1.7.3 released
From: |
Alexandre Duret-Lutz |
Subject: |
Re: Automake 1.7.3 released |
Date: |
Wed, 26 Feb 2003 20:20:20 +0100 |
User-agent: |
Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.2 (i386-pc-linux-gnu) |
>>> "Simon" == Simon Josefsson <address@hidden> writes:
[...]
Simon> Hm, right. I guess I'm looking for a way to write a rule to build
Simon> elisp without having to put the files in EXTRA_DIST too. Do you have
Simon> any ideas?
Simon> Right now I only have:
Simon> EXTRA_DIST = ... punycode.el idna.el
Simon> lisp_LISP = punycode.el idna.el
Simon> Would a dist_lisp_LISP the Right Solution, or is there some other
Simon> option available now?
Maybe I'm missing something. What's wrong with EXTRA_DIST
exactly? Listing files twice? If so, you could rewrite the
above as follows.
EXTRA_DIST = ... $(lisp_LISP)
lisp_LISP = punycode.el idna.el
We ought to support dist_lisp_LISP for consistency with other
primaries, but it won't save a lot of typing. If dist_lisp_LISP
worked, you'd just have to type
EXTRA_DIST = ...
dist_lisp_LISP = punycode.el idna.el
--
Alexandre Duret-Lutz
Re: Automake 1.7.3 released, Alexandre Duret-Lutz, 2003/02/26
FYI: lisp_DATA, Alexandre Duret-Lutz, 2003/02/26
FYI: document dist_lisp_LISP (Was: Re: Automake 1.7.3 released), Alexandre Duret-Lutz, 2003/02/26