X-Git-Url: https://git.distorted.org.uk/~mdw/skel/blobdiff_plain/483a5859ece0769b2a4c9913cda9f6065596397b..203280d6d9f431922266fd78581e774c5b99b1c7:/Makefile.am diff --git a/Makefile.am b/Makefile.am index 55b2587..305631f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,65 +1,85 @@ -## -*-makefile-*- -## -## $Id: Makefile.am,v 1.2 1999/06/01 22:31:08 mdw Exp $ -## -## Makefile for skel -## -## (c) 1998 Mark Wooding -## - -##----- Licensing notice ---------------------------------------------------- -## -## This file is part of Skel. -## -## Skel is free software; you can redistribute it and/or modify -## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or -## (at your option) any later version. -## -## Skel is distributed in the hope that it will be useful, -## but WITHOUT ANY WARRANTY; without even the implied warranty of -## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -## GNU General Public License for more details. -## -## You should have received a copy of the GNU General Public License -## along with Skel; if not, write to the Free Software Foundation, -## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -##----- Revision history ---------------------------------------------------- -## -## $Log: Makefile.am,v $ -## Revision 1.2 1999/06/01 22:31:08 mdw -## Add support for `wml' files. -## -## Revision 1.1.1.1 1999/04/05 13:44:59 mdw -## Initial import. -## - -## --- Basic automake configuration --- - -AUTOMAKE_OPTIONS = foreign - -## --- Emacs lisp files to build --- +### -*-makefile-*- +### +### Makefile for skel +### +### (c) 1998 Mark Wooding +### + +###----- Licensing notice --------------------------------------------------- +### +### This file is part of Skel. +### +### Skel is free software; you can redistribute it and/or modify +### it under the terms of the GNU General Public License as published by +### the Free Software Foundation; either version 2 of the License, or +### (at your option) any later version. +### +### Skel is distributed in the hope that it will be useful, +### but WITHOUT ANY WARRANTY; without even the implied warranty of +### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +### GNU General Public License for more details. +### +### You should have received a copy of the GNU General Public License +### along with Skel; if not, write to the Free Software Foundation, +### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +###-------------------------------------------------------------------------- +### Emacs Lisp stuff. lisp_LISP = skel.el skel-init.el ELCFILES = skel.elc -## --- Other things to install --- +###-------------------------------------------------------------------------- +### Skeleton files for various languages. + +SKEL_FILES = skeleton skelrc + +## C and related languages +SKEL_FILES += skelrc.c skelrc.h +SKEL_FILES += skelrc.cc +SKEL_FILES += skelrc.m +SKEL_FILES += skelrc.cs +SKEL_FILES += skelrc.java + +## Lisp +SKEL_FILES += skelrc.lisp +SKEL_FILES += skelrc.scm +SKEL_FILES += skelrc.el + +## Python +SKEL_FILES += skelrc.py skelrc.pyx + +## Perl +SKEL_FILES += skelrc.pl skelrc.pm + +## Autotools +SKEL_FILES += skelrc.am skelrc.ac skelrc.at + +## Haskell +SKEL_FILES += skelrc.hs + +## Skeleton files +SKEL_FILES += skeleton.skel skelrc.skel + +## Texinfo +SKEL_FILES += skeleton.texi skelrc.texi + +###-------------------------------------------------------------------------- +### What goes where. + +pkgdata_DATA = $(SKEL_FILES) + +###-------------------------------------------------------------------------- +### Distribution. -pkgdata_DATA = \ - skeleton skelrc \ - skelrc.c skelrc.cc skelrc.h skelrc.y \ - skelrc.el \ - skelrc.pm skelrc.pl \ - skelrc.am skelrc.in \ - skelrc.wml \ - skeleton.skel skelrc.skel \ - skeleton.texi skelrc.texi +EXTRA_DIST = $(SKEL_FILES) skel-init.el -## --- Things to distribute --- +###-------------------------------------------------------------------------- +### Debian. -EXTRA_DIST = \ - $(pkgdata_DATA) \ - skel-init.el +EXTRA_DIST += \ + debian/control debian/copyright debian/changelog debian/rules \ + debian/skel.emacsen-install debian/skel.emacsen-remove \ + debian/skel.emacsen-startup -##----- That's all, folks --------------------------------------------------- +###----- That's all, folks --------------------------------------------------