Add skeletons for Scheme code and Autotest.
[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
46 SKEL_FILES += skelrc.scm
47 SKEL_FILES += skelrc.el
48
49 ## Python
50 SKEL_FILES += skelrc.py skelrc.pyx
51
52 ## Perl
53 SKEL_FILES += skelrc.pl skelrc.pm
54
55 ## Autotools
56 SKEL_FILES += skelrc.am skelrc.ac skelrc.at
57
58 ## Haskell
59 SKEL_FILES += skelrc.hs
60
61 ## Skeleton files
62 SKEL_FILES += skeleton.skel skelrc.skel
63
64 ## Texinfo
65 SKEL_FILES += skeleton.texi skelrc.texi
66
67 ###--------------------------------------------------------------------------
68 ### What goes where.
69
70 pkgdata_DATA = $(SKEL_FILES)
71
72 ###--------------------------------------------------------------------------
73 ### Distribution.
74
75 EXTRA_DIST = $(SKEL_FILES) skel-init.el
76
77 ###--------------------------------------------------------------------------
78 ### Debian.
79
80 EXTRA_DIST += \
81 debian/control debian/copyright debian/changelog debian/rules \
82 debian/skel.emacsen-install debian/skel.emacsen-remove \
83 debian/skel.emacsen-startup
84
85 ###----- That's all, folks --------------------------------------------------