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
|
## Process this file with automake to produce Makefile.in
## $Id: Makefile.am,v 1.15 2006/06/10 15:38:21 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, 2004, 2005, 2006 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 script
docdir = $(datadir)/doc/$(PACKAGE)
doc_DATA = AUTHORS COPYING ChangeLog README THANKS TODO NEWS
## local targets
MY_RDIR = topaz:www/mdcc.cx/pub/caspar/
sign:
for i in $(DIST_ARCHIVES); do echo "gpg --armor --detach-sign $$i"; gpg --armor --detach-sign $$i; done
publish:
for i in $(DIST_ARCHIVES); do echo "scp $$i $$i.asc $(MY_RDIR)"; scp $$i $$i.asc $(MY_RDIR); done
@echo now run update-tar-symlinks caspar
## 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
|