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