Fix whitespace errors.
[skel] / Makefile.am
CommitLineData
d50cdf63
MW
1### -*-makefile-*-
2###
3### Makefile for skel
4###
5### (c) 1998 Mark Wooding
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This file is part of Skel.
11###
12### Skel is free software; you can redistribute it and/or modify
13### it under the terms of the GNU General Public License as published by
14### the Free Software Foundation; either version 2 of the License, or
15### (at your option) any later version.
16###
17### Skel is distributed in the hope that it will be useful,
18### but WITHOUT ANY WARRANTY; without even the implied warranty of
19### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20### GNU General Public License for more details.
21###
22### You should have received a copy of the GNU General Public License
23### along with Skel; if not, write to the Free Software Foundation,
24### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26###--------------------------------------------------------------------------
27### Emacs Lisp stuff.
7fb0878b 28
29lisp_LISP = skel.el skel-init.el
30ELCFILES = skel.elc
31
d50cdf63
MW
32###--------------------------------------------------------------------------
33### Skeleton files for various languages.
34
35SKEL_FILES = skeleton skelrc
36
37## C and related languages
5626c0cc 38SKEL_FILES += skelrc.c skelrc.h
d50cdf63
MW
39SKEL_FILES += skelrc.cc
40SKEL_FILES += skelrc.m
41SKEL_FILES += skelrc.cs
42SKEL_FILES += skelrc.java
43
44## Lisp
203280d6
MW
45SKEL_FILES += skelrc.lisp
46SKEL_FILES += skelrc.scm
47SKEL_FILES += skelrc.el
d50cdf63
MW
48
49## Python
50SKEL_FILES += skelrc.py skelrc.pyx
51
52## Perl
53SKEL_FILES += skelrc.pl skelrc.pm
54
55## Autotools
203280d6 56SKEL_FILES += skelrc.am skelrc.ac skelrc.at
d50cdf63
MW
57
58## Haskell
59SKEL_FILES += skelrc.hs
60
61## Skeleton files
62SKEL_FILES += skeleton.skel skelrc.skel
63
64## Texinfo
65SKEL_FILES += skeleton.texi skelrc.texi
66
67###--------------------------------------------------------------------------
68### What goes where.
69
70pkgdata_DATA = $(SKEL_FILES)
71
72###--------------------------------------------------------------------------
73### Distribution.
74
75EXTRA_DIST = $(SKEL_FILES) skel-init.el
76
77###--------------------------------------------------------------------------
78### Debian.
79
80EXTRA_DIST += \
831c5bb2 81 debian/control debian/copyright debian/changelog debian/rules \
82 debian/skel.emacsen-install debian/skel.emacsen-remove \
83 debian/skel.emacsen-startup
7fb0878b 84
d50cdf63 85###----- That's all, folks --------------------------------------------------