1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
# Copyright (C) 1998 Claus-Justus Heine
#
# 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, 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; see the file COPYING. If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
#
#
# $RCSfile: Makefile.am,v $
# $Revision: 1.5 $
# $Date: 1998/12/18 22:58:46 $
#
# Process this file with automake to get a Makefile.in to be
# processed by autoconf
#
# $Log: Makefile.am,v $
# Revision 1.5 1998/12/18 22:58:46 cvs
# Replaced the $Source: $ keywords substitution by the $RCSfile: $
# keyword substitution.
#
# Revision 1.4 1998/08/18 11:45:58 claus
# Add README-FIRST to EXTRA_DIST
#
# Revision 1.3 1998/08/18 11:19:06 claus
# Polished READMEs and such for first release of the manual.
#
# Revision 1.2 1998/08/05 18:18:10 claus
# Add the ftape-faq subdirectory
#
# Revision 1.1 1998/08/05 16:19:47 claus
# Initial revision
#
# Revision 1.5 1998/07/31 13:26:56 claus
# Don't define dejagnu if no test target is present.
#
# Revision 1.4 1998/07/30 20:44:12 claus
# Remove tests subdir, add contrib/ subdir.
#
#
AUTOMAKE_OPTIONS=gnu
SUBDIRS = ftape-manual ftape-howto ftape-faq
EXTRA_DIST = README-FIRST
|