From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Jesper Harder Newsgroups: gmane.emacs.help Subject: Re: Using autoconf to release elisp package Date: Sun, 10 Oct 2004 22:15:18 +0200 Organization: http://purl.org/harder/ Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1097439498 26548 80.91.229.6 (10 Oct 2004 20:18:18 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 10 Oct 2004 20:18:18 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Oct 10 22:18:13 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CGk8y-0006Cq-00 for ; Sun, 10 Oct 2004 22:18:12 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CGkFs-00033R-Qk for geh-help-gnu-emacs@m.gmane.org; Sun, 10 Oct 2004 16:25:20 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!newsmi-us.news.garr.it!newsmi-eu.news.garr.it!NewsITBone-GARR!feed.news.tiscali.de!uio.no!newsfeed1.uni2.dk!news.get2net.dk.POSTED!53ab2750!not-for-mail Original-Newsgroups: gnu.emacs.help X-Face: ^RrvqCr7c,P$zTR:QED"@h9+BTm-"fjZJJ-3=OU7.)i/K]<.J88}s>'Z_$r; List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:21178 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:21178 "Alexandre Russel" 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