Spring cleaning.
[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
38SKEL_FILES += skelrc.c skelrc.h
39SKEL_FILES += skelrc.cc
40SKEL_FILES += skelrc.m
41SKEL_FILES += skelrc.cs
42SKEL_FILES += skelrc.java
43
44## Lisp
45SKEL_FILES += skelrc.lisp skelrc.el
46
47## Python
48SKEL_FILES += skelrc.py skelrc.pyx
49
50## Perl
51SKEL_FILES += skelrc.pl skelrc.pm
52
53## Autotools
54SKEL_FILES += skelrc.am skelrc.ac
55
56## Haskell
57SKEL_FILES += skelrc.hs
58
59## Skeleton files
60SKEL_FILES += skeleton.skel skelrc.skel
61
62## Texinfo
63SKEL_FILES += skeleton.texi skelrc.texi
64
65###--------------------------------------------------------------------------
66### What goes where.
67
68pkgdata_DATA = $(SKEL_FILES)
69
70###--------------------------------------------------------------------------
71### Distribution.
72
73EXTRA_DIST = $(SKEL_FILES) skel-init.el
74
75###--------------------------------------------------------------------------
76### Debian.
77
78EXTRA_DIST += \
831c5bb2 79 debian/control debian/copyright debian/changelog debian/rules \
80 debian/skel.emacsen-install debian/skel.emacsen-remove \
81 debian/skel.emacsen-startup
7fb0878b 82
d50cdf63 83###----- That's all, folks --------------------------------------------------