Expunge revision histories in files.
[skel] / Makefile.am
1 ## -*-makefile-*-
2 ##
3 ## $Id: Makefile.am,v 1.8 2004/04/08 01:36:28 mdw Exp $
4 ##
5 ## Makefile for skel
6 ##
7 ## (c) 1998 Mark Wooding
8 ##
9
10 ##----- Licensing notice ----------------------------------------------------
11 ##
12 ## This file is part of Skel.
13 ##
14 ## Skel is free software; you can redistribute it and/or modify
15 ## it under the terms of the GNU General Public License as published by
16 ## the Free Software Foundation; either version 2 of the License, or
17 ## (at your option) any later version.
18 ##
19 ## Skel is distributed in the hope that it will be useful,
20 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ## GNU General Public License for more details.
23 ##
24 ## You should have received a copy of the GNU General Public License
25 ## along with Skel; if not, write to the Free Software Foundation,
26 ## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27
28 ## --- Basic automake configuration ---
29
30 AUTOMAKE_OPTIONS = foreign
31
32 ## --- Emacs lisp files to build ---
33
34 lisp_LISP = skel.el skel-init.el
35 ELCFILES = skel.elc
36
37 ## --- Other things to install ---
38
39 pkgdata_DATA = \
40 skeleton skelrc \
41 skelrc.c skelrc.cc skelrc.h skelrc.m skelrc.y skelrc.java \
42 skelrc.mxd \
43 skelrc.el \
44 skelrc.pm skelrc.pl \
45 skelrc.am skelrc.in \
46 skelrc.wml \
47 skelrc.hs skelrc.gc \
48 skeleton.skel skelrc.skel \
49 skeleton.texi skelrc.texi
50
51 ## --- Things to distribute ---
52
53 EXTRA_DIST = \
54 $(pkgdata_DATA) \
55 skel-init.el \
56 debian/control debian/copyright debian/changelog debian/rules \
57 debian/skel.emacsen-install debian/skel.emacsen-remove \
58 debian/skel.emacsen-startup
59
60 ##----- That's all, folks ---------------------------------------------------