help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Using autoconf to release elisp package


From: Jesper Harder
Subject: Re: Using autoconf to release elisp package
Date: Sun, 10 Oct 2004 22:15:18 +0200
User-agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50 (gnu/linux)

"Alexandre Russel" <scandrou@hpo.net> writes:

> Any link to tutorial or tips on how to make elisp package very
> welcome.

You're right that documentation for using autoconf for non-C projects
is rather inadequate.  This is what I came up with:

,----[ Makefile.am ]
| EXTRA_DIST = imaxima.el
| lisp_LISP = imaxima.el
| ELCFILES = imaxima.elc
| info_TEXINFOS = imaxima.texi
`----

,----[ configure.in ]
| AC_INIT(imaxima.el)
| AM_INIT_AUTOMAKE(imaxima,0.9)
| AC_PROG_INSTALL
| AM_PATH_LISPDIR
| AC_OUTPUT(Makefile)
`----

-- 
Jesper Harder                                <http://purl.org/harder/>


reply via email to

[Prev in Thread] Current Thread [Next in Thread]