diff options
author | Roger Leigh <rleigh@debian.org> | 2005-06-21 11:30:41 +0000 |
---|---|---|
committer | Roger Leigh <rleigh@debian.org> | 2005-06-21 11:30:41 +0000 |
commit | f89e3c7c7268090f271443dc41093857d5d5e6e4 (patch) | |
tree | f7b78ae6d86b55b994fdf8b35755ad00213fbe8a /Makefile.am | |
parent | 129ac3ff8bfdd46bb689052c890fd888caa61a22 (diff) | |
download | schroot-f89e3c7c7268090f271443dc41093857d5d5e6e4.tar.gz |
Summary:
Add autotools framework
Revision:
schroot--mainline--0.1.0--patch-1
- Add support for autoconf, automake and libtool.
- Add support for gtk-doc.
- Install schroot setuid root.
- Add --version option and embed version number in the output.
- Add AUTHORS and NEWS files.
- Generate ChangeLog with tla.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 00000000..4f506bdf --- /dev/null +++ b/Makefile.am @@ -0,0 +1,27 @@ +# schroot Makefile template +# +# +# Copyright (C) 2004-2005 Roger Leigh <rleigh@debian.org> +# +# This program 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. +# +# This program 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 this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# +##################################################################### + +SUBDIRS = schroot + +$(srcdir)/ChangeLog: + tla changelog >$@ + +.PHONY: ChangeLog |