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
|
## Process this file with automake to produce Makefile.in
## $Id: Makefile.am,v 1.10 2004/07/21 14:32:05 joostvb Exp $
# This script is free software; you can distribute it and/or modify it
# under the terms of the GNU GPL. See the file COPYING.
## Copyright (C) 2003 Joost van Baal
## you need cvs2cl for this to work. get it from
## http://www.red-bean.com/cvs2cl/ .
ChangeLog: NEWS
cvs2cl --accum --prune
VERSION.m4 VERSION stamp.year stamp.month stamp.day: ChangeLog
./setversion
CONFIGURE_DEPENDENCIES = VERSION.m4
## Hook `dist-bzip2' to `dist'.
AUTOMAKE_OPTIONS = dist-bzip2 check-news
## used in make dist[check]
VERSION = @PACKAGE_VERSION@
PACKAGE = @PACKAGE_TARNAME@
SUBDIRS = doc mk sgml
docdir = $(datadir)/doc/$(PACKAGE)
doc_DATA = AUTHORS COPYING ChangeLog README THANKS TODO NEWS
## Only files from the current directory or from subdirectory which
## don't have their own Makefile.am should be listed here.
EXTRA_DIST = bootstrap setversion VERSION.m4 VERSION
|